You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
432 B

4 years ago
## All
### Instructions
Create a function named `all` that works like `Promise.all` but with objects (instead of arrays).
4 years ago
### Code provided
> The provided code will be added to your solution, and does not need to be submitted.
4 years ago
```js
Promise.all = undefined
```
### Notions
- [Promise.js](https://nan-academy.github.io/js-training/examples/promise.js)
- [Promise.all](https://devdocs.io/javascript/global_objects/promise/all)