HHitakshiinhitakshi120.hashnode.dev·May 10 · 4 min readUnderstanding the this Keyword in JavaScriptWhat Does this Represent? In JavaScript: this represents the current execution context But for beginners, the easiest way to understand it is: this = the object that is calling the function 00
AYAbhishek Yadavinterminal-thoughts.hashnode.dev·Mar 15 · 5 min readUnderstanding Variables and Data Types in JavaScript: The Ultimate Beginner’s GuideImagine you are moving into a new house. You have a collection of items—books, kitchenware, and clothes—that you need to organize. You wouldn't just throw them in a pile; you would put them into label00
PKPratham Kumarinwithprathamkumar.hashnode.dev·Mar 15 · 4 min readUnderstanding Variables and Data Types in JavaScript Introduction Think of a variable as a box where you can store information. For example, you might have a box labeled “Name” where you keep your name. In programming, variables let us store information00
OGOmkar Guptainomkargupta.hashnode.dev·Mar 14 · 10 min readUnderstanding Variables and Data Types in JavaScript📖 What's inside this post What are variables and why do we need them? How to declare variables — var, let, and const Primitive data types in JavaScript Differences between var, let, and const Wh00
RSRitu Soodinjs-basics-series.hashnode.dev·Mar 13 · 9 min readUnderstanding Variables and Data Types in JavaScript If you’re starting JavaScript, one of the first things you’ll hear is: “Declare a variable” “Store data” “Use the correct data type” “Use let instead of var” “Why is const not changing?” And if00
DPDushyant Pratap Singhindushyantxcode.hashnode.dev·Mar 10 · 5 min readUnderstanding Variables and Data Types in JavaScriptvariable A variable is a named reference to a value stored in memory. in simpler term we say A variable is a named box that stores a value so the program can use it later. Example: let name = "Dushyan00
SBSnehashis Banerjeeinunderstanding-variables-js-snehashis.hashnode.dev·Mar 8 · 3 min readUnderstanding Variables and Data Types in JavaScript##What variables are and why they are needed? Variables are container's in a computer memory which is use to store, retrieve and update data. ##How to declare variables using var, let, and const About00
KSKanishka Shashiinjavasblog.hashnode.dev·Mar 8 · 5 min readUnderstanding Variables and Data Types in JavaScriptWhen you start learning JavaScript, one of the first and most important concepts is variables and data types. These help us store and manage information in a program. In this blog, we will understand:00
DDivakarindivakar29.hashnode.dev·Mar 5 · 6 min readVariables and Datatypes in JavaScriptIn this blog we're going to learn about what are variables, why we need them, what are datatypes, different types of them , difference between var, let & const etc. What are Variables? A variable is t00
HMHafiz Muneebindata-types.hashnode.dev·Mar 3 · 7 min readData Types in JavaScript: The Foundation Every Developer Must Master Imagine building a house without knowing the difference between cement, steel, and glass. You might stack materials randomly and hope something stands—but it won’t last. In JavaScript, data types are 00