VTVisshnnu Tejaainvt-blogs.hashnode.dev00JavaScript OperatorsMar 2 · 3 min read · What Are Operators? Operators are symbols that tell JavaScript to perform operations on values. Think of them like math symbols you already know: Addition (+) Subtraction (-) Greater than (>) LessJoin discussion
VTVisshnnu Tejaainvt-blogs.hashnode.dev00The Magic of this, call(), apply(), and bind() in JavaScriptMar 2 · 3 min read · What Does this Mean in JavaScript? The simplest way to understand this is, who is calling the function? It refers to the object that is executing the function. Let’s see this step by step. this InsideJoin discussion
VTVisshnnu Tejaainvt-blogs.hashnode.dev00JavaScript FunctionsMar 2 · 3 min read · What Are Functions and Why Do We Need Them? Imagine you need to calculate the total price again and again. Instead of writing the same code multiple times, you create a reusable block of code. That reJoin discussion
VTVisshnnu Tejaainvt-blogs.hashnode.dev00JavaScript Arrays 101Mar 2 · 3 min read · What Are Arrays and Why Do We Need Them? Imagine you want to store (Apple, Banana, Mango, Orange, Grapes)One way is: let fruit1 = "Apple"; let fruit2 = "Banana"; let fruit3 = "Mango"; let fruit4 = "OrJoin discussion
VTVisshnnu Tejaainvt-blogs.hashnode.dev00Understanding Object-Oriented Programming in JavaScriptMar 1 · 4 min read · What is Object-Oriented Programming (OOP)? Let’s start with a real-world example. Imagine a car factory. Before making cars, engineers create a blueprint. From that one blueprint, they can build multiJoin discussion