Skip to content

Instantly share code, notes, and snippets.

@keslo
Last active November 5, 2018 14:37
Show Gist options
  • Save keslo/ec663bfe2a8567d41070cd1ab9989150 to your computer and use it in GitHub Desktop.
Save keslo/ec663bfe2a8567d41070cd1ab9989150 to your computer and use it in GitHub Desktop.
setTimeout in recursion
// setTimeout in recursion
var timerId = setTimeout(function tick() {
/* YOUR CODE HERE */
timerId = setTimeout(tick, 500);
}
}, 500)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment