Skip to content

Instantly share code, notes, and snippets.

@vyuvalv
Created November 22, 2020 15:37
Show Gist options
  • Save vyuvalv/983b01ec212fdb098bf050a4519df696 to your computer and use it in GitHub Desktop.
Save vyuvalv/983b01ec212fdb098bf050a4519df696 to your computer and use it in GitHub Desktop.
setInterval
this.speed = 500;
interval;
// activate the loop
onPlay() {
this.interval = window.setInterval(() => {
// Do Something
this.nextGeneration();
}, this.speed);
}
// Stop the infinite loop
onStop() {
window.clearInterval(this.interval);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment