Understanding Promise.allSettled() in JavaScript

Diwakar Verma - Oct 21 - - Dev Community

What is Promise.allSettled()?
Promise.allSettled() helps you handle multiple promises at once. Unlike Promise.all(), it doesn’t stop if one promise fails. Instead, it waits for all promises to finish, whether they succeed or fail this is what actually a Promise.allsettled means.
Image description

This is useful when you want to get results from every promise, even if some don't work.

. . . . . . . . . . . . . .
Terabox Video Player