SMSulochan Mahajaninsulochan.hashnode.dev·Jul 22 · 6 min readSpread vs Rest Operators in JavaScriptThe Spread operator and the Rest parameter share exact same syntax (...) , but they perform completely opposite functions.The spread operator expands an iterable into individual elements whereas the r00
SMSulochan Mahajaninsulochan.hashnode.dev·Jul 21 · 4 min readTemplate Literals in JavaScript Javascript template literals are denoted with backtick ( ` ) allowing for embedding dynamic expressions and content. The content is written between them. Template literals were introduced in ES6 for r00
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