Skip to content

Instantly share code, notes, and snippets.

@masahitojp
Created September 26, 2010 07:20
Show Gist options
  • Save masahitojp/597682 to your computer and use it in GitHub Desktop.
Save masahitojp/597682 to your computer and use it in GitHub Desktop.
var write =function(name){console.log(name);};
var gg =0;
var z =0;
setTimeout(function(){write("bbb")},10);
setInterval(function(){write(gg++)},10);
for(var i=0;i<1000000;i++)z++;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment