Make a kitchen timer. Modify the countdown()
function in countdown.js to take a number of seconds, then print each second counting down to zero.
countdown(10);
// should print
// 10...
// 9...
// 8...
// ...
- Use global variable to keep track of time
- Keep track of time without defining any global variables
- BONUS: don't define any new variables