In a scenario where an application needs to make several API calls and only proceed after all have successfully completed, what Promise method would be most appropriate?

  • Promise.race
  • Promise.all
  • Promise.resolve
  • Promise.reject
When dealing with multiple asynchronous operations, Promise.all is used to wait for all promises to be resolved. It ensures that the application proceeds only when all the promises are successfully completed, making it suitable for scenarios where multiple API calls need to be made concurrently.
Add your answer
Loading...

Leave a comment

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