mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
443 B
443 B
date | id | title |
---|---|---|
2020-11-11 | fe95210e-f59a-45a4-b0ed-f4d3ec981a07 | Executing Promises in Parallel (Promises.all) |
Description
Run promises in parallel. Will throw an exception if one of the requests fail.
Syntax
Promise.all([
asyncFunc1(),
asyncFunc2(),
])
.then(([result1, result2]) => {
})
.catch(err => {
// Receives first rejection among the Promises
});