Course · Section 16: Asynchronous JavaScript: Promises, Async/Await, and AJAX · Lecture 263: Promises and the Fetch API
Implement `resolveAfter(value)` that returns the result of awaiting `Promise.resolve(value)`.
+ 1 hidden test run on Submit.
await unwraps Promise.resolve(value) to the underlying value.
Run your code to see results.