Created
April 29, 2018 06:03
-
-
Save abdus/ec905711403be77655bb84140a91998f 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
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