Skip to content

Instantly share code, notes, and snippets.

@iJustErikk
Created December 16, 2020 17:43
Show Gist options
  • Save iJustErikk/62de5b234ad322da53c46a26ab7a49ff to your computer and use it in GitHub Desktop.
Save iJustErikk/62de5b234ad322da53c46a26ab7a49ff to your computer and use it in GitHub Desktop.
// 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