Course · Section 16: Asynchronous JavaScript: Promises, Async/Await, and AJAX · Lecture 263: Promises and the Fetch API
Implement an async function `pipelineAsync(value, steps)` that awaits each named step applied to `value` in order. Steps are `inc` (add 1) or `double` (multiply by 2).
+ 1 hidden test run on Submit.
Awaiting each named step in order builds an async pipeline over the starting value.
Run your code to see results.