To handle multiple AJAX requests concurrently and wait for all to complete, use Promise._______.

  • all
  • race
  • any
  • chain
To handle multiple AJAX requests concurrently and wait for all to complete, use Promise.all(). This method takes an array of promises and waits until all of them are resolved or any one is rejected.
Add your answer
Loading...

Leave a comment

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