ankitkrsinghoops.hashnode.devUnderstanding Object-Oriented Programming in JavaScript A Short Story from a Car Factory imagine you visit a big car factory. Machines are working, workers are assembling parts, and many cars are being made. You notice something interesting. All the cars5h ago·4 min read
ankitkrsinghobject.hashnode.devUnderstanding Objects in JavaScriptA small story about organizing data Imagine you are building a student management system for your college You need to store some basic information about a student : name age city At first, you wr10h ago·3 min read
ankitkrsinghvariablesdatatypes.hashnode.devUnderstanding Variables and Data Types in JavaScriptWhen we start learning JavaScript, One of the first concepts we encounter is Variables and datatypes . They helps us to store and manage data in a programs. Let's understand things in a simple beginne1d ago·6 min read
ankitkrsinghdev.hashnode.devJavaScript Operators: The Basics You Need to KnowWe know many operators from school. They are things like addition +, multiplication *, subtraction -, and so on. In coding, When we write a program we often need to calculate values, compare things, o2d ago·3 min read
ankitkrsingharray.hashnode.devJavaScript Arrays 101When we start learning JavaScript, We often store values in variables. Example : let fruit1 = "Mango" let fruit2 = "apple" let fruit3 = "Grapes" This works when we have only few values But , imagine 3d ago·3 min read