Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created December 5, 2015 06:26
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 chuck0523/feaba086b02654976502 to your computer and use it in GitHub Desktop.
Save chuck0523/feaba086b02654976502 to your computer and use it in GitHub Desktop.
console.time('time1');
var sum = 0;
for(var i = 0; i < 500000000; i++) {
sum += i;
}
console.log(sum);
console.timeEnd('time1');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment