In a scenario where multiple API calls are made and you need to wait for all of them to complete, which Promise method would be most appropriate?

  • Promise.all()
  • Promise.race()
  • Promise.any()
  • Promise.resolve()
When dealing with multiple asynchronous operations that should all complete before proceeding, Promise.all() is the appropriate method. It takes an array of promises and resolves when all of them have resolved. This ensures that you wait for all API calls to complete before moving forward.
Add your answer
Loading...

Leave a comment

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