Exercise: TaskQueue with Promises
Practice how to modify the TaskQueue class using await/async.
We'll cover the following...
Problem statement
Migrate the TaskQueue class internals from promises to async/await where possible.
If you’re unsure about how to do this, click the “Show Hint” button.
Coding challenge
Write your solution code in the following code widget. We’ve already ...
Ask