Executing Promises in Parallel (Promises.all)
Description
Run promises in parallel. Will throw an [JavaScript Exceptions](JavaScript Exceptions) if one of the requests fail.
Syntax
Promise.all([
asyncFunc1(),
asyncFunc2(),
])
.then(([result1, result2]) => {
})
.catch(err => {
// Receives first rejection among the Promises
});