Skip to content

Instantly share code, notes, and snippets.

@fuqcool
Created March 8, 2016 18:39
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 fuqcool/0efd3a7cd5dc24f1208b to your computer and use it in GitHub Desktop.
Save fuqcool/0efd3a7cd5dc24f1208b to your computer and use it in GitHub Desktop.
// Use *repeat* instead of *setInterval*
function repeat(fn, interval) {
fn()
setTimeout(function () {
repeat(fn, interval)
}, interval)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment