JBJoydeep Banerjeeinjoydeepx.hashnode.dev·Apr 22 · 6 min readLinux File System HuntingWhen I first started using Linux, I thought learning a bunch of terminal commands meant I understood the system. But that idea didn’t last long. The more I explored, the more I realized something impo00
JBJoydeep Banerjeeinjoydeepx.hashnode.dev·Apr 21 · 4 min readJavaScript Modules: Import and Export ExplainedJavaScript feels simple at first… until your entire project ends up inside one file. At the beginning, you might write everything together — variables, functions, API calls, UI logic. It works… but on00
JBJoydeep Banerjeeinjoydeepx.hashnode.dev·Mar 13 · 10 min readUnderstanding Object-Oriented Programming in JavaScriptIn programming, we often deal with things that have both information and behavior. For example, a student has a name, age, and course. A car has a brand, model, and color. At the same time, a student 00
JBJoydeep Banerjeeinjoydeepx.hashnode.dev·Mar 13 · 5 min readThe Magic of this, call(), apply(), and bind() in JavaScriptJavaScript has a small word that confuses almost every beginner at some point: this It looks simple, but its behavior can feel unpredictable at first. Sometimes it refers to an object, sometimes to th00
JBJoydeep Banerjeeinjoydeepx.hashnode.dev·Mar 13 · 5 min readUnderstanding Objects in JavaScriptIn JavaScript, we often create things that have both data and actions. For example, a student can have a name and age, and also perform an action like showing details. A car can have a brand and color00