TTejasintejasdevcodes.hashnode.dev00From ls to System Internals: My First Deep Dive into LinuxApr 22 · 6 min read · I always thought Linux was about commands. ls, cd, mkdir that’s what I believed Linux was. But when I opened the root directory (/) and started exploring, something unexpected happened… I wasn’t lookiJoin discussion
TTejasintejasdevcodes.hashnode.dev00String Polyfills and Common Interview Methods in JavaScriptMar 26 · 7 min read · You've used toUpperCase(), trim(), includes() dozens of times. But have you ever been asked can you build that yourself? That's exactly what interviews test. Not whether you know the method name, but Join discussion
TTejasintejasdevcodes.hashnode.dev00Array Flatten in JavaScriptMar 26 · 6 min read · Arrays inside arrays inside arrays. At some point, almost every JavaScript developer ends up staring at deeply nested data wondering how do I get all of this into one flat list? That's what flatteningJoin discussion
TTejasintejasdevcodes.hashnode.dev00Map and Set in JavaScriptMar 26 · 6 min read · You already know objects and arrays. They've handled most of your data needs so far. But there are situations where both start showing their limits and that's exactly where Map and Set come in. The PrJoin discussion
TTejasintejasdevcodes.hashnode.dev00JavaScript Modules: Import and Export Explained Mar 26 · 7 min read · As your JavaScript code grows, keeping everything in one file stops working. Things get hard to find, hard to fix, and hard to reuse. Modules are how JavaScript lets you split your code into separate Join discussion