Skip to content

Instantly share code, notes, and snippets.

@luckyshot
Created April 8, 2013 20:11
Show Gist options
  • Save luckyshot/5340059 to your computer and use it in GitHub Desktop.
Save luckyshot/5340059 to your computer and use it in GitHub Desktop.
JavaScript simplest timer (setInterval)
var t = setInterval(function(){
// Do stuff
},1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment