wiki/content/20201116163327-promise_allsettled.md

17 lines
317 B
Markdown
Raw Permalink Normal View History

2024-05-06 20:40:05 +00:00
---
2024-10-30 17:34:11 +00:00
date: 2020-11-16
2024-05-06 20:40:05 +00:00
id: 5efd4eb2-1e91-4fdf-8d83-18c0c1029d52
title: Promise.allSettled
---
# Description
Let every request finish no matter if others fail or not.
# Syntax
``` javascript
const promises = [Promise.resolve(1), Promise.reject(2)];
const [result1, result2] = await Promise.allSettled(promises);
```