Skip to content

Instantly share code, notes, and snippets.

@night-fury-rider
Created June 24, 2020 03:02
Show Gist options
  • Save night-fury-rider/899458e02db307198bc302e01caae816 to your computer and use it in GitHub Desktop.
Save night-fury-rider/899458e02db307198bc302e01caae816 to your computer and use it in GitHub Desktop.
Basic setInterval
var numberOfKingdoms = 7;
setInterval(function(){
alert('Jon should be king of ' + numberOfKingdoms + ' kingdoms');
}, 500)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment