Skip to content

Instantly share code, notes, and snippets.

@abdus
Created April 29, 2018 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abdus/ec905711403be77655bb84140a91998f to your computer and use it in GitHub Desktop.
Save abdus/ec905711403be77655bb84140a91998f to your computer and use it in GitHub Desktop.
const countDownTimer = (totalTime) => {
let timeFunc = setInterval(() => {
console.log(totalTime);
totalTime--;
if (totalTime < 0) {
clearInterval(timeFunc);
console.log("Time's Up!");
}
}, 1000)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment