How does the static method Promise.all() work with multiple promises?

  • Executes all promises in parallel and returns a single promise that resolves when all promises are fulfilled or rejects when any promise is rejected.
  • Executes promises sequentially and returns the result of the last promise.
  • Randomly selects one promise to execute and returns its result.
  • Executes promises concurrently but returns the result of the first fulfilled promise.
The Promise.all() method takes an array of promises, executes them in parallel, and returns a single promise that resolves when all the input promises have fulfilled or rejects when any one of them is rejected. This is useful for coordinating multiple asynchronous operations.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *