Course · Section 16: Asynchronous JavaScript: Promises, Async/Await, and AJAX · Lecture 263: Promises and the Fetch API
Implement `sumAll(nums)` that wraps each number in a resolved promise, awaits them all with `Promise.all`, and returns the sum.
+ 1 hidden test run on Submit.
Promise.all resolves all values in parallel; reduce then sums the resolved array.
Run your code to see results.