SMSulochan Mahajaninsulochan.hashnode.dev·Apr 22 · 6 min readLinux From Root: File System ExplorationMost operating systems hide their complexity. Linux does the opposite—it quietly exposes everything, but only if you know where to look. So lets start from / and explore Linux like a system investigat00
SMSulochan Mahajaninsulochan.hashnode.dev·Mar 19 · 7 min readThe Complete Flow of Node.js ExecutionYou type a simple command: node index.js And your JavaScript file runs. But have you ever stopped and wondered —**what actually happens inside Node.js at that moment?**How does your code go from a fi00
SMSulochan Mahajaninsulochan.hashnode.dev·Mar 19 · 4 min readSerialization and Deserialization in JavascriptSerialization Serialization is process of converting Javascript object or array into a JSON string so that it can be sent over a network (API request), stored in localStorage,files,,database and share00
SMSulochan Mahajaninsulochan.hashnode.dev·Mar 15 · 6 min readThe Magic of this, call(), apply(), and bind() in JavaScriptJavaScript has some concepts that confuse beginners at first, and this is one of them. When you first see it, it may look strange, but once you understand the simple idea behind it, things become much00
SMSulochan Mahajaninsulochan.hashnode.dev·Mar 15 · 6 min readArrow Functions in JavaScript: A Simpler Way to Write FunctionsWhen we first learn JavaScript, we usually write functions using the function keyword. This works perfectly, but sometimes the syntax becomes a little long, especially for small tasks. Modern JavaScri00