Skip to content

Instantly share code, notes, and snippets.

@masahitojp
Created April 28, 2010 05:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masahitojp/381784 to your computer and use it in GitHub Desktop.
Save masahitojp/381784 to your computer and use it in GitHub Desktop.
var loop = function(n,fn){
for(var i=0;i<n;i++)fn();
}
console.time("id1");
loop(3,function(){console.log("hello");});
console.timeEnd("id1");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment