VKVishal Kumar Guptainthedevpocket.hashnode.dev·May 5 · 7 min readWhy React Doesn't Touch the Real DOM (And Why That's Genius)The Problem Nobody Talks About Every React tutorial start same way . npm create vite@latest , select template and boom - you're writing components passing properties (as we mature 😎 dev. , we say pro00
VKVishal Kumar Guptainvishudev.hashnode.dev·Mar 6 · 4 min readObject-Oriented Programming in JavaScript: A Complete GuideObject Oriented Programming (OOP) is a style of programming that uses classes and object to represent real world entity , object and that's property(data) and behaviors(methods) . Instead of write sca00
VKVishal Kumar Guptainvishudev.hashnode.dev·Mar 5 · 2 min readArrow Functions in JavaScript: A Simpler Way to Write FunctionsIn the JavaScript arrow function is a modern way to write function . What Are Arrow Functions? Simple Definition: Arrow functions = A shorter, cleaner way to write functions using => . Normal Function00
VKVishal Kumar Guptainvishudev.hashnode.dev·Mar 5 · 4 min readJavaScript Operators: The Basics You Need to KnowOperator is a tools They let you do math , compare values and make decisions . What Are Operators? Operators a symbol that perform action on values // Operator: + 5 + 3 = 8 // Operator: > 10 > 5 = tr00
VKVishal Kumar Guptainvishudev.hashnode.dev·Mar 5 · 8 min readThe Magic of this, call(), apply(), and bind() in JavaScriptWhat is this keyword - In javascript most confusing topic to understanding this , how this keyword context changes when you use with call() , apply() & apply() . But don't worry i will try to my best 00