SMSAMIT MANDALinplaywithjs.hashnode.dev00The Magic of this, call(), apply(), and bind() in JavaScriptMar 15 · 3 min read · Intro this in JavaScript is one of those things that feels confusing at first, but once you get it — its like magic. Basically, this is just a way to say: "who is calling me right now?" It points to wJoin discussion
SMSAMIT MANDALinplaywithjs.hashnode.dev00Understanding Object-Oriented Programming in JavaScriptMar 15 · 3 min read · Intro Object-Oriented Programming (OOP) is basically a way to organize code by thinking about things as "objects" that have their own data and behaviors. Instead of just writing random functions and vJoin discussion
SMSAMIT MANDALinplaywithjs.hashnode.dev00Understanding Objects in JavaScriptMar 15 · 3 min read · Intro Objects in JavaScript are like little containers that hold related info together. Instead of having a bunch of separate variables for name, age, city etc, you group them into one thing. Super usJoin discussion
SMSAMIT MANDALinplaywithjs.hashnode.dev00Arrow Functions in JSMar 15 · 3 min read · intro arrow functions are like the chill, shorter version of regular functions in modern JavaScript. They were added in ES6 to make code cleaner and less wordy, especially for small, one-line things. Join discussion
SMSAMIT MANDALinplaywithjs.hashnode.dev00JavaScript FunctionsMar 15 · 2 min read · Introduction Functions are basicly reusable blocks of code that save us from writing the same logic over and over again. Think of them like little helpers: you give them some input, they do something Join discussion