mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
300 B
300 B
id | title |
---|---|
5efd4eb2-1e91-4fdf-8d83-18c0c1029d52 | Promise.allSettled |
Description
Let every request finish no matter if others fail or not.
Syntax
const promises = [Promise.resolve(1), Promise.reject(2)];
const [result1, result2] = await Promise.allSettled(promises);