SMSAMIT MANDALinsaminitcohort.hashnode.dev00Peeling the Layers of Linux : 1d ago · 4 min read · Intro Linux feels simple on the surface with its clean directory tree, but diving into the actual files that control behavior shows a crazzy-crazzy design. Everything from how the system boots and resJoin discussion
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