Promise.all
is a method that accepts an array of promises and returns a single promise that resolves when all the promises in the array are resolved. If any of the promises reject, the returned promise will reject immediately.
Promise.all([promise1, promise2, promise3])
.then(results => console.log(results))
.catch(error => console.error(error));
Tags: intermediate, Promises, JavaScript, asynchronous programming
URL: https://www.tiktok.com/@jsmentoring/photo/7449321820743847200