Skip to content

Instantly share code, notes, and snippets.

@OGNova
Created March 20, 2019 15:34
Show Gist options
  • Save OGNova/2904baa7b900060f0974ffcd42ebaa97 to your computer and use it in GitHub Desktop.
Save OGNova/2904baa7b900060f0974ffcd42ebaa97 to your computer and use it in GitHub Desktop.
let count = 3600;
let counter = setInterval(timer, 1000);
function timer() {
count = count - 1;
if (count <= 0) {
clearInterval(counter);
return console.log('color');
}
console.log(count);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment