PCPriyanshu Chaudharyinchaudhary-web-dev.hashnode.dev·Mar 15 · 1 min readUnderstanding Object-Oriented Programming in JavaScriptTopics to Cover What Object-Oriented Programming (OOP) means Real-world analogy (blueprint → objects) What is a class in JavaScript Creating objects using classes Constructor method Methods insi00
PCPriyanshu Chaudharyinchaudhary-web-dev.hashnode.dev·Mar 15 · 1 min readUnderstanding Objects in JavaScriptTopics to Cover What objects are and why they are needed Creating objects Accessing properties (dot notation and bracket notation) Updating object properties Adding and deleting properties Loopi00
PCPriyanshu Chaudharyinchaudhary-web-dev.hashnode.dev·Mar 15 · 1 min readJavaScript Operators: The Basics You Need to KnowTopics to be covered What operators are Arithmetic operators (+, -, *, /, %) Comparison operators (==, ===, !=, >, <) Logical operators (&&, ||, !) Assignment operators (=, +=, -=)00
PCPriyanshu Chaudharyinchaudhary-web-dev.hashnode.dev·Mar 15 · 1 min readJavaScript Array 101Topics to be covered What arrays are and why we need them How to create an array Accessing elements using index Updating elements Array length property Basic looping over arrays00
PCPriyanshu Chaudharyinchaudhary-web-dev.hashnode.dev·Mar 15 · 4 min readThe Magic of this, call(), apply(), and bind() in JavaScriptTopic to be covered in this article What this means in JavaScript (simple explanation) this inside normal functions this inside objects What call() does What apply() does What bind() does Diffe00