Pawan Spawanblog.hashnode.dev·Jul 25, 2024Understanding Callbacks, Promises, and Async/Await in JavaScriptCallbacks A callback is a function passed as an argument to another function, to be "called back" later. Callbacks are a fundamental concept in asynchronous programming in JavaScript, allowing you to execute code after a long-running operation, like ...Discuss·1 likeasync/await
Syed Aquib Alihadetan.hashnode.dev·Jun 10, 2024Callback Functions, Promises, Async/Await and Fetching API'sCallback Functions A callback function is a function that is passed as an argument to another function and is executed after some operation has been completed. Callbacks are commonly used for asynchronous operations in JavaScript, such as fetching da...Discuss·32 readscallback functions
Gaurav Aggarwalaggarwalgaurav1012.hashnode.dev·Apr 20, 2024Asynchronous JavaScriptAsynchronous programming is an essential concept in JavaScript that allows your code to run in the background without blocking the execution of other code. Developers can create more efficient and responsive applications by using features like callba...Discussasynchronous
Gemma Blackgemmablack.dev·Feb 10, 2024NodeJS: 4.8x faster if we go back to callbacks!Yeah, I said it! Callbacks are 4.8x faster when running them parallel over async/await in parallel. And only 1.9x faster when we run sequential callbacks. I've modified this article somewhat after I got some helpful and kind comments about my dodgy ...Ricardo Lopes and 2 others are discussing this3 people are discussing thisDiscuss·329 readsNode.js
Mmek-Abasi Ekontechwithekon.hashnode.dev·Jan 18, 2024Asynchronous JavaScript - A Practical Guide to Callbacks, Promises, and Async/AwaitHave you ever struggled to navigate a website because it loaded slowly? This means that the website was not responsive. To address such issues, one of the methods developers incorporate into their coding practice is asynchronous programming. In this ...Discuss·31 readsTech & The CloudAjax
Koundinya Gavicherlauisnippets.dev·Dec 10, 2023Unlocking Asynchronicity in JavaScript: From Callbacks to Async/AwaitIntroduction Asynchronous JavaScript is a cornerstone of modern web development, enabling efficient and responsive applications. This approach allows web pages to process lengthy operations, such as API calls or data fetching, without stalling the us...Discuss·13 likes·201 readsasyc
saurabh suryavanshisaurabhsuryavanshi.hashnode.dev·Oct 14, 2023Understanding the Event Loop in JavaScriptWhen diving into the world of JavaScript, there's a critical concept to grasp - the Event Loop. It’s fundamental to how JavaScript handles asynchronous operations, allowing web pages to be responsive while executing tasks like fetching data, listenin...Discuss·28 readsJavaScript