all(promises);
Combines multiple promises into a single promise that is resolved when all of the input promises are resolved.
Parameters
Param | Type | Details |
---|---|---|
promises | Array.<Promise> Object.<Promise> | An array or hash of promises. |
Returns
Promise |
Returns a single promise that will be resolved with an array/hash of values, each value corresponding to the promise at the same index/key in the |
Please login to continue.