Waiting On Multiple Promises
You may find yourself in a situation where you have to request multiple resources from multiple API endpoints and then combine that data in some way.
One way to achieve this would be with nested promises.
This nesting isn't ideal and it can get hard to read as the full implementation is put into place.
The Promise
API provides an alternative.
With Promise.all()
we are able to wrap any number of promises and wait for all of them to resolve until we do something with the results. This allows us to create a context in which we have all the data we need without a bunch of nesting.
Last updated