Created
December 16, 2020 17:43
-
-
Save iJustErikk/62de5b234ad322da53c46a26ab7a49ff to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// really easy with set interval | |
let currentTime = 10; | |
const ONE_SECOND = 1000; | |
const intervalId = setInterval(() => { | |
console.log(currentTime--); | |
if (currentTime === 0) clearInterval(intervalId); | |
}, ONE_SECOND); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment