Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 806 Bytes

what_is_promise_all_in_javascript_.md

File metadata and controls

15 lines (10 loc) · 806 Bytes

What Is Promise.all in JavaScript?

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