SSSagar Sinhainsagarsinha.hashnode.dev·Mar 18 · 3 min readDemystifying Node.js Architecture: The Brain, The Muscle, and The GlueIf you are coming from a JavaScript background, you might think of Node.js as just "JavaScript on the server." But under the hood, Node.js is a sophisticated piece of engineering that combines three d00
SSSagar Sinhainsagarsinha.hashnode.dev·Mar 16 · 5 min readJavaScript Arrays 101: A beginner's guideHave you ever found yourself working on a JavaScript project and needed to manage a list of similar things? Perhaps you were building a simple to-do app, keeping track of student grades, or managing a00
SSSagar Sinhainsagarsinha.hashnode.dev·Mar 15 · 3 min readUnderstanding Variables and Data Types in JavaScriptImagine you are moving into a new house. You have several boxes, and you write labels on them like "Kitchen Supplies" or "Books" so you know what's inside. In JavaScript, variables are those boxes. Th00
SSSagar Sinhainsagarsinha.hashnode.dev·Mar 15 · 1 min readArrow Functions in JavaScriptIntroduced in ES6, arrow functions are the "cool younger sibling" of traditional functions. They do the same job but with less "boilerplate" code, making your scripts cleaner and more readable. 1. The00
SSSagar Sinhainsagarsinha.hashnode.dev·Mar 15 · 2 min readUnderstanding Objects in JavaScript: The Key-Value PowerhouseIn the real world, we describe things by their characteristics. A person has a name, an age, and a hometown. In JavaScript, we use Objects to store this kind of related data in one place. What are Obj00