Course · Section 16: Asynchronous JavaScript: Promises, Async/Await, and AJAX · Lecture 277: Running Promises in Parallel
Implement an async function `tripleAll(nums)` that resolves each tripled value and returns them all with `Promise.all`.
+ 1 hidden test run on Submit.
Promise.all resolves all the tripled-value promises together and returns the array of results.
Run your code to see results.