MSManas Sahainmatrixnas.hashnode.dev00JavaScript Variables & Data Types9h ago · 4 min read · Before a program can do anything useful, it needs to remember things. A user's name, a price, whether someone is logged in or not — all of this needs to be stored somewhere. That is exactly what variaJoin discussion
MSManas Sahainmatrixnas.hashnode.dev00JavaScript Functions — Declaration vs Expression9h ago · 4 min read · If operators are the tools, functions are the machines. They let you write a block of code once and use it as many times as you need. That is the core idea, and everything else follows from it. What AJoin discussion
MSManas Sahainmatrixnas.hashnode.dev00JavaScript Operators 9h ago · 4 min read · Operators are the building blocks of any JavaScript program. They let you do math, compare values, make decisions, and store data. If you have ever written 2 + 2 or asked "is this value equal to that Join discussion
MSManas Sahainmatrixnas.hashnode.dev00Template Literals (The Modern way write strings in js)Apr 16 · 2 min read · What are Template Literals? Template literals are simply strings with superpowers. They are the modern way of working with strings in JavaScript. Instead of using single or double quotes, template litJoin discussion
MSManas Sahainmatrixnas.hashnode.dev00Nested Arrays and Flattening in JavaScript Mar 29 · 1 min read · In JavaScript, a nested array means an array that contains other arrays inside it. For example: const data = [1, [2, 3], [4, [5, 6]]]; This structure is useful when data comes in grouped form, but ofJoin discussion