DEV Community

Cover image for Understanding Asynchronous Programming in JavaScript
Yisak Girmay
Yisak Girmay

Posted on • Updated on

Understanding Asynchronous Programming in JavaScript

Asynchronous programming is a powerful feature of JavaScript that allows you to write code that can perform multiple tasks at the same time without blocking the execution of other code. In this post, we’ll explore the basics of asynchronous programming in JavaScript and learn about callbacks, promises, and async/await.

Callbacks

A callback is a function that is passed as an argument to another function and is executed at a later time. Callbacks are often used in asynchronous operations such as reading a file or making an HTTP request. Sure! Here are some simpler examples to illustrate the concepts of callbacks, promises, and async/await in JavaScript:

Here’s a simple example that uses a callback function to log a message after a delay:

function delayedLog(message, callback) {
  setTimeout(() => {
    console.log(message);
    callback();
  }, 1000);
}

delayedLog('Hello', () => {
  console.log('World');
});
Enter fullscreen mode Exit fullscreen mode

In this example, we define a delayedLog function that takes two arguments: a message and a callback function. The delayedLog function uses the setTimeout function to log the message after a delay of 1 second (1000 milliseconds). After the message is logged, the callback function is called.

When we call the delayedLog function with the arguments 'Hello' and an anonymous function that logs 'World', the following happens:

The 'Hello' message is logged after a delay of 1 second.
The anonymous callback function is called, logging the 'World' message.

Promises

Promises are a more modern way to handle asynchronous operations in JavaScript. A promise represents a value that may not be available yet but will be at some point in the future. Promises provide a cleaner and more readable syntax for handling asynchronous operations compared to callbacks.

Here’s a simple example that uses a promise to simulate an asynchronous operation:

function asyncOperation() {
  return new Promise((resolve, reject) => {
    setTimeout(() => {
      resolve('Success!');
    }, 1000);
  });
}

asyncOperation()
  .then(result => {
    console.log(result);
  })
  .catch(error => {
    console.error(error);
  });
Enter fullscreen mode Exit fullscreen mode

In this example, we define an asyncOperation function that returns a new promise. The promise executor function takes two arguments: resolve and reject. The executor function uses the setTimeout function to simulate an asynchronous operation that takes 1 second to complete. After the operation is complete, the resolve function is called with the value 'Success!'.

When we call the asyncOperation function and chain a then method to it, the following happens:

The promise returned by the asyncOperation function is resolved with the value 'Success!' after a delay of 1 second.
The callback function passed to the then method is called with the resolved value as its argument, logging 'Success!'.

Async/Await

Async/await is a more recent addition to JavaScript that provides an even cleaner and more readable syntax for handling asynchronous operations. The async keyword is used to define an asynchronous function, which always returns a promise. The await keyword is used inside an async function to pause its execution until a promise is resolved.

c function asyncOperation() {
  const result = await new Promise(resolve => {
    setTimeout(() => {
      resolve('Success!');
    }, 1000);
  });
  console.log(result);
}

asyncOperation();
Enter fullscreen mode Exit fullscreen mode

In this example, we define an asynchronous function called asyncOperation using the async keyword. Inside this function, we use the await keyword to pause its execution until the promise returned by the new Promise expression is resolved. The resolved value is assigned to the result variable and logged.

When we call the asyncOperation function, the following happens:

The promise returned by the new Promise expression is resolved with the value 'Success!' after a delay of 1 second.
The execution of the asyncOperation function resumes and the resolved value is assigned to the result variable.
The 'Success!' message is logged.

Conclusion

Asynchronous programming is a powerful feature of JavaScript that allows you to write code that can perform multiple tasks at the same time without blocking the execution of other code. In this post, we’ve explored callbacks, promises, and async/await – three different ways to handle asynchronous operations in JavaScript. By understanding these concepts, you’ll be able to write cleaner and more efficient code for handling asynchronous operations in your JavaScript projects.

Top comments (3)

Collapse
 
desoga profile image
deji adesoga • Edited

You should consider using syntax highlighting in your future posts for code snippets.

Collapse
 
yisakt profile image
Yisak Girmay

Thanks for the advise.

Collapse
 
desoga profile image
deji adesoga

You're welcome.