Course · Section 16: Asynchronous JavaScript: Promises, Async/Await, and AJAX · Lecture 263: Promises and the Fetch API
Implement `doubleAllAsync(nums)` that resolves each doubled value and returns them with `Promise.all`.
+ 1 hidden test run on Submit.
Promise.all over the mapped doubled promises resolves to the array of doubled numbers.
Run your code to see results.