AJAyush Jaininayushjjainn.hashnode.dev·3d ago · 9 min readSynchronous vs Asynchronous JavaScriptI will be honest with you. I am the kind of student who prefers recorded lectures over live ones, and no yaar, it is not because I am lazy. It is because of one simple thing. Control. With a recorded 00
AJAyush Jaininayushjjainn.hashnode.dev·3d ago · 10 min readAsync/Await in JavaScriptEvery single morning before college, I run the exact same routine. Same steps, same order, pretty much on autopilot. So let me walk you through how I actually get ready. I wake up, and the first thing00
AJAyush Jaininayushjjainn.hashnode.dev·4d ago · 14 min readAsync Code in Node.js: Callbacks and PromisesLast week me and my four friends had a meeting fixed at CCD, one in the afternoon. We are building a project together and this was not some casual timepass meet, this one actually mattered. We could n00
BLBhavy Ladaniinbhavycodes.hashnode.dev·Aug 13 · 4 min readAsync/Await Under the Hood: What Really Happens When JavaScript Waits?async and await made asynchronous JavaScript much easier to read. But have you ever wondered what actually happens when JavaScript encounters an await? Does the browser pause? Does JavaScript stop exe00
BLBhavy Ladaniinbhavycodes.hashnode.dev·Aug 7 · 5 min readPromise Internals: What Actually Happens When You Call .then()?Most JavaScript developers use Promises every day. But have you ever wondered what actually happens after you call .then()? Where does JavaScript keep your callback? Why does it not wait for the API t00
KSKanishka Shashiinjavasblog.hashnode.dev·Jul 27 · 8 min readThe Restaurant That Runs on Promises: A JavaScript Love StoryA Quick Story Before We Begin Imagine you walk into a restaurant called Café Async. You sit down, and the waiter says: "I promise your food will arrive. It might come out perfectly cooked, or the kit10
SKShubham Kumar Singhinblog.realdev.club·Jul 3 · 5 min readHow I Solved the Ordered Parallel Batcher Problem in JavaScriptEvery coding problem teaches you something new. Recently, I worked on an interesting asynchronous JavaScript interview question called Ordered Parallel Batcher. At first, I thought the solution would 00
SMS M Piyas Mahamude Alifintechopinion.hashnode.dev·Jun 24 · 19 min readNode.js Thread Pool Under the Hood The Secret Engine Behind libuv's Architecture, Scheduling, Optimization, and High ConcurrencyIntroduction: The Lie You Were Told Every Node.js tutorial opens with the same sentence: "Node.js is single-threaded." It is a sentence that is both true and wildly misleading at the same time. Yes,00
ASANKESH SHARMAiniamankeshsharma.hashnode.dev·Jun 17 · 3 min readPromises in JavascriptIntroduction A promise is a object that represents eventual completion (or failure) of asyncronous operations. Simple defination: A placeholder for a future value. Use of Promise: To execute asyncron10
AKAshish Kumar Sainiinblog.ashishkumarsaini.dev·May 22 · 2 min readAsync/Await in JavaScriptAs a Javascript developer, you have seen the application become more interactive and started handling more asynchronous operations like API calls, file readings, and timers. Initially, developers rely00