Last active
August 29, 2015 14:23
-
-
Save wcoder/fcee724b4f5b44062754 to your computer and use it in GitHub Desktop.
Simple timer with JS
This file contains hidden or 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
/** | |
* @param seconds - time | |
* @param tick - callback | |
* @param result - callback | |
*/ | |
function timer (seconds, tick, result) { | |
if (seconds > 0) { | |
tick(seconds); | |
seconds -= 1; | |
setTimeout(function () { | |
timer(seconds, tick, result); | |
}, 1000); | |
} else { | |
result(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example for using
Read post