STShivaram Thallojuinshivaramwebdev.hashnode.dev00JavaScript Operators: The Basics You Need to KnowMar 15 · 5 min read · When we write JavaScript programs, we often need to perform actions on values. For example: Add two numbers Compare two values Check multiple conditions To perform these actions, JavaScript uses Join discussion
STShivaram Thallojuinshivaramwebdev.hashnode.dev00The Magic of this, call(), apply(), and bind() in JavaScriptMar 15 · 4 min read · JavaScript has a concept that confuses many beginners. That concept is this. But once you understand one simple idea, everything becomes clear. this means: “Who is calling the function?” In this artJoin discussion
STShivaram Thallojuinshivaramwebdev.hashnode.dev00Function Declaration vs Function Expression: What’s the Difference?Mar 15 · 4 min read · When writing JavaScript programs, we often repeat the same tasks. Example: Adding two numbers Printing a greeting Calculating totals Instead of writing the same code again and again, we use functJoin discussion
STShivaram Thallojuinshivaramwebdev.hashnode.dev00JavaScript Arrays 101 (Beginner-Friendly Guide)Mar 15 · 4 min read · When writing programs, we often need to store many values together. Example: A list of fruits A list of marks A list of movies A list of tasks Instead of creating many variables, JavaScript giveJoin discussion
STShivaram Thallojuinshivaramwebdev.hashnode.dev00Understanding Object-Oriented Programming (OOP) in JavaScriptMar 15 · 4 min read · When programs become bigger, we need a better way to organize code. That is where Object-Oriented Programming (OOP) helps. OOP is a programming style where we create objects that contain data and actiJoin discussion