AGAryan Guptainaryan-blog.hashnode.dev·Jun 11 · 8 min readLinux: The Hidden Architecture Behind Millions of ConnectionsThe Biggest Lie Beginners Hear People say: "Everything in Linux is a file" This is not completely true. A more accurate statement is: "Almost everything in Linux can be represented through a file d00
AGAryan Guptainaryan-blog.hashnode.dev·Mar 20 · 3 min readNodeList vs HTMLCollection in JavaScriptWhen working with the DOM, you’ll often deal with collections of elements instead of just one. Two common types you’ll encounter are NodeList and HTMLCollection. They look similar at first, but they b00
AGAryan Guptainaryan-blog.hashnode.dev·Mar 17 · 3 min readUnderstanding global vs globalThis in JavaScript1. What is global? global is a Node.js-specific global object. Think of it like a big container(Object) which holds everything that is present in your Node app. means whatever stored in Node app, is 00
AGAryan Guptainaryan-blog.hashnode.dev·Mar 17 · 3 min readBasic Architecture of Node.js : Core ComponentsBasic Architecture of Node.js: Core Components When you write JavaScript in Node.js, it feels like everything just works—timers fire, files are read, APIs respond. But behind the scenes, Node.js is a 10
AGAryan Guptainaryan-blog.hashnode.dev·Mar 16 · 4 min readMastering call(), apply(), and bind() in JavaScript: How to Control this Like a ProIntroduction JavaScript functions are powerful, but sometimes they behave in confusing ways. One of the biggest reasons is the this keyword. The value of this depends on how a function is called, not 00