Challenge: Print numbers sequentially
This challenge will test your skills in implementing async/await with promises in JavaScript.
Problem statement #
In this challenge, you need to print the numbers 0-9 in a sequential manner, so that each number is printed after a random waiting time. For example, i=0
might wait 4 seconds before being ...