https://www.digitalocean.com/community/tutorials/understanding-the-event-loop-callbacks-promises-and-async-await-in-javascript https://developer.mozilla.org/en-US/docs/Web/API/HTML_DOM_API/Microtask_guide https://www.geeksforgeeks.org/what-is-the-difference-between-microtask-queue-and-callback-que...
I'm attempting to create a basic countdown using Javascript, utilizing user input from an HTML form. However, my clearTimeout function is not functioning properly, as it fails to even trigger the console.log statement that I've included. To call the clearTimeout function in my HTML, I si...