Lab: Egg Timer
https://github.com/UChicagoWebDev/lab-5
Make a page with a text entry field and a button called 'Set Timer'. When a user puts a number in the field and clicks the button, wait that many seconds then log "Ding!" to the console. Make sure you let users set multiple timers at once!
https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/setTimeout
let myGreeting = setTimeout(function () {
console.log("Hello!");
}, 2000);
console.log("Howdy!");