Skip to content

Instantly share code, notes, and snippets.

@z-------------
Created March 4, 2014 00:29
Show Gist options
  • Save z-------------/9337739 to your computer and use it in GitHub Desktop.
Save z-------------/9337739 to your computer and use it in GitHub Desktop.
Test speed of setInterval() against actual time
var I = 1;
var interval = setInterval(
function(){
console.log(I);
I++;
},1);
setTimeout(function(){clearInterval(interval)},1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment