AEAnnie-Stewart Elijahinalvissraghnall.hashnode.dev·Aug 13 · 9 min readRamblings about my turmoil with Linux audio...I recently caught the multimedia engineering bug, and I've been looking into audio API's, RFC's, and whatnot. TL;DR here: it's not been fun at all. So, I was trying to do something really basic [as pa00
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
CcodeByAtharvinatharvintech.hashnode.dev·Jun 15 · 6 min readCallbacks in JavaScriptCallbacks? The very first time you heard about this, it seems something too heavy to tackle. But not now! I will make it sure to take you from beginner to advanced understanding of closures. No confus00
SMS M Piyas Mahamude Alifintechopinion.hashnode.dev·Jun 8 · 8 min readThe Call Stack Demystified: How Node.js Actually ThinksIntroduction: The Question Nobody Asks You've written async/await. You've used setTimeout. You've seen stack traces a hundred times. But have you ever stopped and asked: "How does Node.js decide what 00
AAnandincall-bind-apply-in-js-any.hashnode.dev·May 10 · 5 min readUnderstanding this in JavaScript: The Name Tag That ChangesImagine you are at a networking event wearing a name tag. When you introduce yourself, you say, "Hi, I'm [your name]." The name tag doesn't have a permanent identity printed on it at the factory. Inst00
NRNavdeep Rohillainjavascript-journey-by-navdeep.hashnode.dev·May 10 · 5 min readSynchronous vs Asynchronous JSJavaScript is single-threaded. That sounds technical, but it simply means: it can only do one thing at a time. If JavaScript only does one thing at a time, how does it handle loading tweets, playing a00
AAbhinavinblog.meetabhinav.com·May 10 · 4 min readAsync Code in Node.js: Callbacks and PromisesImagine you are at a busy coffee shop. If the barista took your order, started brewing the coffee, and stood perfectly still waiting for the machine to finish before talking to the next customer, the 00
NRNavdeep Rohillainjavascript-journey-by-navdeep.hashnode.dev·May 10 · 4 min readCallbacks in JavaScript: Why they existHello guys, in this article we are going to learn about the callback functions in the js, what are they , why we use them and the problems we face while using them. Callback function A callback functi00
HBHimanshu Balaniinblog.himanshubalani.com·May 10 · 5 min readMaking Sense of JavaScript PromisesIf you write JavaScript, you spend a lot of your time waiting. You wait for a database to return a user profile, you wait for an API to send back weather data, or you wait for a user to click a button00
HBHimanshu Balaniinblog.himanshubalani.com·May 10 · 6 min readUnderstanding Callbacks in JavaScriptIf you want to understand how JavaScript actually works, you have to accept one fundamental premise: in JavaScript, a function is just a value. It is not a special, rigid structure. It is a piece of d00