To handle multiple asynchronous tasks with Promises, the Promise._______ method is used, which runs multiple promises in parallel.

  • race
  • all
  • resolveAll
  • parallel
The correct option is 'all.' The Promise.all method is used to handle multiple asynchronous tasks with Promises by running multiple promises in parallel. It waits for all promises to resolve and returns an array of their results. The 'race' method resolves or rejects as soon as one of the promises in an iterable resolves or rejects.
Add your answer
Loading...

Leave a comment

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