The Power of Asynchronous Programming in JavaScript

Sumit Saha
5 min readMar 27, 2023
Asynchronous Programming in JS

JavaScript is a programming language that is known for its ability to execute code in a non-blocking, asynchronous manner. Asynchronous programming is the ability to perform tasks without waiting for a previous task to finish, making it an essential feature in modern web development. In this article, we will explore the power of asynchronous programming in JavaScript and how it can improve the performance and user experience of web applications.

What is Asynchronous Programming?

Asynchronous programming is a programming technique that allows code to continue executing while it waits for a task to complete. In traditional synchronous programming, each line of code is executed in order, and the program waits for a task to complete before moving on to the next task. With asynchronous programming, tasks can be executed simultaneously, allowing the program to be more efficient and responsive.

JavaScript has always been a single-threaded language, which means that it can only execute one task at a time. However, asynchronous programming in JavaScript allows developers to write code that appears to be executing simultaneously, even though it is not. This is done through the use of callbacks, promises, and async/await functions.

Callbacks

Callbacks are the most basic form of asynchronous programming in JavaScript. A callback is a function that is passed as an argument to another function and is executed when the original function has completed its task. Callbacks are commonly used in JavaScript for event handling and asynchronous operations, such as fetching data from an API.

Here is an example of using callbacks to load an image asynchronously:

function loadImage(url, callback) {
let image = new Image();
image.onload = function() {
callback(null, image);
};
image.onerror = function() {
callback('Could not load image at ' + url);
};
image.src = url;
}

loadImage('https://example.com/image.png', function(err, image) {
if (err) {
console.error(err);
} else {
console.log('Image loaded successfully');
}
});

The code demonstrates how to use a callback function for asynchronous programming in JavaScript to load an image. The loadImage function takes a URL and a callback function as arguments, creates a new Image object and assigns the URL as its source. Two event listeners, onload and onerror, are attached to the image object. The onload listener passes a null value and the loaded image object to the callback function, while the onerror listener passes an error message and no image object. The callback function is defined inline, and is responsible for logging a success message or an error message.

Promises

Promises are a more advanced form of asynchronous programming in JavaScript. A promise is an object that represents the eventual completion or failure of an asynchronous operation and allows the code to handle the result asynchronously.

A promise has three states: pending, fulfilled, or rejected. When a promise is created, it is in the pending state. When the asynchronous operation completes successfully, the promise is fulfilled, and the result is returned. If the operation fails, the promise is rejected, and an error is returned.

Here is an example of using promises to load an image asynchronously:

function loadImage(url) {
return new Promise(function(resolve, reject) {
let image = new Image();
image.onload = function() {
resolve(image);
};
image.onerror = function() {
reject(new Error('Could not load image at ' + url));
};
image.src = url;
});
}

loadImage('https://example.com/image.png')
.then(function(image) {
console.log('Image loaded successfully');
})
.catch(function(error) {
console.error(error);
});

The code defines a JavaScript function loadImage that loads an image from a given URL and returns a Promise that resolves with the loaded image if successful, or rejects with an error if unsuccessful. The function creates an Image object, attaches onload and onerror event handlers, sets the src property of the Image object to the provided URL to start loading the image, and returns a Promise that encapsulates the asynchronous loading of the image. If the loading of the image is successful, the then method of the Promise is executed, which logs a success message to the console. If the loading of the image fails, the catch method of the Promise is executed, which logs the error message to the console.

Async/Await

Async/await is a new feature in JavaScript that makes asynchronous programming even easier. Async/await allows developers to write asynchronous code as if it were synchronous, making it easier to understand and debug.

Async/await is built on top of promises, and it allows developers to write asynchronous code that looks like synchronous code. An async function is a function that returns a promise, and the await keyword is used to wait for the promise to be fulfilled or rejected.

Here is an example of using async/await to load an image asynchronously:

async function loadImage(url) {
let image = new Image();
image.src = url;

return new Promise(function (resolve, reject) {
image.onload = function () {
resolve(image);
};
image.onerror = function () {
reject(new Error("Could not load image at " + url));
};
});
}

async function main() {
try {
let image = await loadImage("https://example.com/image.png");
console.log("Image loaded successfully");
} catch (error) {
console.error(error);
}
}

main();

The code defines two functions loadImage and main. The loadImage function uses an Image object to load an image from a given URL and returns a Promise that resolves with the loaded image if successful or rejects with an error if unsuccessful. The main function calls the loadImage function using await to wait for the Promise to resolve or reject, logs a success message to the console if the image is loaded successfully, or logs the error message to the console if the loading of the image fails. Finally, the main function is called to start the execution of the program.

Benefits of Asynchronous Programming

Asynchronous programming has many benefits, especially in web development. Here are some of the most significant benefits:

1. Improved Performance: Asynchronous programming allows web applications to perform multiple tasks simultaneously, which improves their performance and responsiveness. This means that web pages load faster and are more responsive to user interactions.

2. Better User Experience: Asynchronous programming can help create a better user experience by reducing the time it takes to load and display content on a web page. This is especially important for mobile devices with slower internet connections.

3. Scalability: Asynchronous programming makes it easier to scale web applications by allowing them to handle multiple requests simultaneously. This means that web applications can handle more users without slowing down or crashing.

4. Reusability: Asynchronous programming allows developers to write reusable code that can be used in different parts of an application. This makes it easier to maintain and update web applications.

Asynchronous JavaScript — callbacks, promises and async/await explanation in Bangla language

Conclusion

Asynchronous programming is a powerful feature in JavaScript that allows web developers to write more efficient and responsive applications. By using callbacks, promises, and async/await functions, developers can create code that appears to be executing simultaneously, even though it is not. Asynchronous programming offers many benefits, including improved performance, better user experience, scalability, and reusability, making it an essential skill for modern web development.

--

--

Sumit Saha

A Full Stack Web Application Developer from Bangladesh 🇧🇩 & a Programming Content Creator. Spend most of time coding outstanding projects or creating contents