DEV Community

Cover image for 🤝 Promise.allSettled() VS Promise.all() in JavaScript 🍭
Victor de la Fouchardière
Victor de la Fouchardière

Posted on

🤝 Promise.allSettled() VS Promise.all() in JavaScript 🍭

Hello ! 🧑‍🌾

Promises are available since ES2015 to simplify the handling of asynchronous operations.

Let's discover 2 Promises and their differences:

Both of them take an iterable and return an array containing the fulfilled Promises.

❓ So, what is the difference between them?

Promise.all() 🧠

The Promise.all() method takes an iterable of promises as an input, and returns a single Promise that resolves to an array of the results of the input promises.

Promise all

All resolved

As you can see, we are passing an array to Promise.all. And when all three promises get resolved, Promise.all resolves and the output is consoled.

Now, let's see if one promise is not resolved, and so, if this one is reject. What was the output ? 🛑

Promise all failed

1 failed

Promise.all is rejected if at least one of the elements are rejected. For example, we pass 2 promises that resolve and one promise that rejects immediately, then Promise.all will reject immediately.

Promise.allSettled() 🦷

Since ES2020 you can use Promise.allSettled. It returns a promise that always resolves after all of the given promises have either fulfilled or rejected, with an array of objects that each describes the outcome of each promise.

For each outcome object, a status string is present :

  • fulfilled
  • rejected

The value (or reason) reflects what value each promise was fulfilled (or rejected) with.

Have a close look at following properties (status, value, reason) of resulting array.

allSettled

Differences 👬

  • Promise.all will reject as soon as one of the Promises in the array rejects.
  • Promise.allSettled will never reject, it will resolve once all Promises in the array have either rejected or resolved.

Supported Browsers 🚸

The browsers supported by JavaScript Promise.allSettled() and Promise.all() methods are listed below:

  • Google Chrome
  • Microsoft Edge
  • Mozilla Firefox
  • Apple Safari
  • Opera

Cheers 🍻 🍻 🍻

If you enjoyed this article you can follow me on Twitter or here on dev.to where I regularly post bite size tips relating to HTML, CSS and JavaScript.

Top comments (15)

Collapse
 
pankajpatel profile image
Pankaj Patel

This is a really handy, allSettled has more verbose output

Thanks for sharing @viclafouch .

Collapse
 
viclafouch profile image
Victor de la Fouchardière

Youre welcome

Collapse
 
iarmankhan profile image
Arman Khan

Loved the article

Collapse
 
viclafouch profile image
Victor de la Fouchardière

Thank you @iarmankhan ;)

Collapse
 
shoaibbagdadi profile image
Suyeb Bagdadi • Edited

You can as well do the following to stop Promise.all from rejecting if there is an exception thrown.``

`
let storage = {
updated: 0,
published: 0,
error: 0,
};

let p1 = async (name) => {
let status = {
success: true,
error: false,
};
return status;
};

let p2 = async (name) => {
throw new Error('on purpose');
};

let success = () => {
storage.updated += 1;
};

let logError = (error) => {
console.log(error.message);
storage.error += 1;
};

Promise.all([
p1('shobe 1').then(success).catch(logError),
p2('shobe 2').then(success).catch(logError),
p1('shobe 1').then(success).catch(logError),
]).then(() => {
console.log('done');
});

`

Collapse
 
polluterofminds profile image
Justin Hunter

Whoa! I had no idea this existed. Thanks for the helpful write-up!

Collapse
 
viclafouch profile image
Victor de la Fouchardière

A pleasure @polluterofminds ;)

Collapse
 
vguleaev profile image
Vladislav Guleaev

short and nice!

Collapse
 
syeutyu profile image
Dayzen

Thanks for sharing this post!

Collapse
 
devinrhode2 profile image
Devin Rhode

I'd love some elaboration on why allSettled was made/why it's better

Collapse
 
devinrhode2 profile image
Devin Rhode
Collapse
 
yogendra3236 profile image
Yogendra

How can I use Promise.allSettled() with my webpack-react app? Is there any plugin being used for it?

Collapse
 
mohdaliyan profile image
Mohd Aliyan

Very well explained. Thank you so much Victor.

Collapse
 
jaganganesh profile image
Jagan Ganesh

Thanks for sharing :)

Collapse
 
cruzblaugrana profile image
Shakhruz

Helpful bro, thnx !!!