MSManas Sahainmatrixnas.hashnode.dev·Jun 2 · 10 min readLinux File SystemIn Linux everything is a file. Really every thing is a file, applications, hardware, network everything. The Linux File System is a structured method of storing and organizing data on a Linux machine.00
MSManas Sahainmatrixnas.hashnode.dev·May 5 · 6 min readUnderstanding Arrays in JavaScriptA complete guide to what arrays are, how to use them, and the most important built-in methods every developer should know. What Arrays Are and Why We Need Them????? Imagine you are building a grocery 00
MSManas Sahainmatrixnas.hashnode.dev·Apr 27 · 11 min readJavaScript Promises !! A Promise is an object that represents the eventual completion — or failure — of an asynchronous operation. Think of it like a real-life promise: someone tells you they'll get something done. From tha00
MSManas Sahainmatrixnas.hashnode.dev·Apr 25 · 4 min readWhat Control Flow Means in ProgrammingImagine you wake up in the morning. You look outside — if it's raining, you grab an umbrella; otherwise, you head out without one. That simple decision you just made? That's control flow. In programmi00
MSManas Sahainmatrixnas.hashnode.dev·Apr 25 · 7 min readthis, call(), apply(), bind()this keyword First we discuss about 'this' keyword. Simply put, this is a value that changes depending on context — where it appears determines what it refers to. It's especially useful in object-orie00