AKAnsh Kumarinansh2006.hashnode.dev·May 9 · 7 min readHow React Virtual DOM works under the HoodEver wondered why React is so fast, even when your MERN stack application scales to hundreds of components? The secret lies in the Virtual DOM. Before moving to what problem the Virtual DOM solves, we00
AKAnsh Kumarinansh2006.hashnode.dev·May 2 · 4 min readArray Flatten in JavaScriptWhat nested arrays are In real life, the word nested means to insert one object of the same type into another object. Here, a nested array also means to have the same structure.For example: [ 10 , 20 00
AKAnsh Kumarinaboutlinux.hashnode.dev·Apr 22 · 3 min readUnderstanding Linux Internals: /proc Virtual Filesystem, Process Info and DNS (WSL Friendly)If you are using Linux, thinking that it is managed by great applications, data, processes, and permissions are managed by great software, but in reality, Linux treats everything as a FILE. Let me tel00
AKAnsh Kumarinansh2006.hashnode.dev·Apr 22 · 4 min readError Handling in JavaScript: Try, Catch, FinallyErrors or bugs are common when writing code or a program. You also have made many typos or written wrong syntax, and hence your program crashes or your app abruptly stops working. But handling these e00
AKAnsh Kumarinansh2006.hashnode.dev·Apr 21 · 4 min readTemplate Literals in JavaScriptHello readers, this article is about Template Literals in JS, and I am writing this because it saves crucial time for developers. Now you are thinking it's just a string and it doesn't matter that muc00