SShayintoddlerstech.hashnode.dev·May 28 · 4 min readAsync Code in Node.Jsif you not already know by now what async code means , then you should probably read previous blogs . for them who wants revise - async code runs parallelly with rest of the code ( its is just a short00
AYAbhishek Yadavinabhi-async-js.hashnode.dev·May 9 · 4 min readAsync Code in Node.js: Callbacks and PromisesIntroduction Node.js is built around asynchronous programming. Instead of waiting for one task to complete before moving to the next, Node.js can continue handling other operations efficiently. This a00
KTKushagra Trivediinkushagrablogs.hashnode.dev·May 9 · 4 min readCallbacks in JavaScript: Why They ExistJavaScript is famous for handling asynchronous operations like: API requests File reading Timers Database queries But before Promises and Async/Await became popular, callbacks were the main way 00
OGOmkar Guptainomkargupta.hashnode.dev·May 9 · 5 min readCallbacks in JavaScript: Why They ExistBefore We Start: Functions Are Values Here's something that makes JavaScript special. In JavaScript, a function is just a value — like a number or a string. You can store it in a variable, pass it aro00
MKMohit Kumarinimohit1o1.hashnode.dev·May 8 · 5 min readCallbacks in JavaScript: Why They ExistFunction ko bhejo, baad mein bulayenge You know functions. You call them, they run. But what if you want a function to run later? After something finishes? That's a callback. Let me explain. Functio00
AKAshaaf Khaninashaaf.hashnode.dev·May 7 · 4 min readCallbacks in JavaScript: Why They ExistIf you’ve ever ordered a coffee and been handed a buzzer that vibrates when your latte is ready, you’ve experienced a callback in real life. Instead of standing at the counter staring at the barista (00
SKShreya Kushwahincallbackj.hashnode.dev·May 3 · 9 min readWhat are Callbacks in JavaScript?Key Takeaways Callbacks in JavaScript are functions passed as arguments to other functions, allowing for continuation of code execution after a task completes, especially useful in asynchronous opera00
AKABHISHEK KUMARincall-backs-in-js-why-they-exist.hashnode.dev·Apr 29 · 15 min readCallback Functions in JavaScript: Passing Functions Like ValuesWho is this for? If you have ever seen a function passed inside another function and wondered what that means — or if words like "callback" feel confusing — this guide explains everything from scratch00
AYAbhishek Yadavinabhi-callbacks-js.hashnode.dev·Apr 29 · 4 min readCallbacks in JavaScript: Why They ExistIntroduction JavaScript is designed to be flexible and expressive, and one of its most powerful features is that functions are treated as values. This capability allows functions to be passed around j00
HHitakshiinhitakshi120.hashnode.dev·Apr 27 · 8 min readAsync Code in Node.js: Callbacks and PromisesWhy async code exists in Node.js Asynchronous code exists in Node.js primarily to enable high-performance, scalable applications on a single-threaded runtime. Because Node.js executes JavaScript on a 00