mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
317 B
317 B
date | id | title |
---|---|---|
2020-11-16 | 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);