DSDivakar Singh Purvainobjects--javascript.hashnode.dev00Understanding Objects in JavaScript2d ago · 8 min read · "Everything in Javascript is an Object". Object is a datatype in javascript used for storing data. Objects store data in key-value pair, the data you want to store should always have a key. This key wJoin discussion
DBDEVESH BAGHELinlearnwithdevesh.hashnode.dev00JavaScript Operators: The Basics You Need to Know3d ago · 4 min read · What Operators AreIn programming, operators are symbols that perform operations on values.In simple words:An operator is a symbol that performs a task.Real-life example 5 + 3 Here: 5 → value (operanJoin discussion
DBDEVESH BAGHELinlearnwithdevesh.hashnode.dev00this, call(), apply(), bind() in JavaScript 3d ago · 3 min read · this, call(), apply(), and bind() in JavaScriptWhat this Means in JavaScriptIn JavaScript, the simple meaning of this is:“Who is calling the function.”In other words, this refers to the object throughJoin discussion
DBDEVESH BAGHELinlearnwithdevesh.hashnode.dev00Functions in JavaScript (Beginner Friendly Guide)3d ago · 3 min read · In programming, a function is a reusable block of code.In simple words:A function is a piece of code that performs a specific task, and we can use it again and again. Real-life exampleImagine you wantJoin discussion
DBDEVESH BAGHELinlearnwithdevesh.hashnode.dev00Arrow Functions in JavaScript: A Simpler Way to Write Functions3d ago · 3 min read · What Arrow Functions AreArrow functions are a short and modern way to write functions in JavaScript.When we write normal functions, we usually write more code.Arrow functions reduce the extra boilerplJoin discussion
DBDEVESH BAGHELinlearnwithdevesh.hashnode.dev00Understanding Object-Oriented Programming in JavaScript3d ago · 3 min read · What Object-Oriented Programming (OOP) Means Object-Oriented Programming means organizing a program using objects.In simple words:We represent real-world things in the form of objects. Examples: car Join discussion
DBDEVESH BAGHELinlearnwithdevesh.hashnode.dev00Control Flow in JavaScript: If, Else, and Switch Explained5d ago · 3 min read · What is Control Flow in Programming? In programming, control flow means the order in which a program executes instructions. In simple words: Control flow decides how the program will run — whether it Join discussion
DBDEVESH BAGHELinlearnwithdevesh.hashnode.dev00JavaScript Arrays 5d ago · 2 min read · What Arrays Are and Why We Need ThemImagine you want to store the names of 5 fruits.If you use separate variables, it may look like this: let fruit1 = "Apple"; let fruit2 = "Mango"; let fruit3 = "BanaJoin discussion
DBDEVESH BAGHELinlearnwithdevesh.hashnode.dev00Understanding Objects in JavaScript5d ago · 3 min read · What Objects Are and Why They Are NeededIn programming, an object is like a container where we can store related information together.An object stores data in a key–value pair structure.Real-life examJoin discussion
DBDEVESH BAGHELinlearnwithdevesh.hashnode.dev00Understanding Variables and Data Types in JavaScript5d ago · 3 min read · What Variables Are and Why They Are Needed In programming, a variable is like a box where we store data.Real-life exampleImagine you have a box where you can keep your name, age, or any information.InJoin discussion