Skip to content

Instantly share code, notes, and snippets.

@SaraVieira
Last active October 30, 2017 14:13
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 SaraVieira/4aeff67a33b8d1cb3a2382981c0a4e98 to your computer and use it in GitHub Desktop.
Save SaraVieira/4aeff67a33b8d1cb3a2382981c0a4e98 to your computer and use it in GitHub Desktop.
console.time("for loop");
var arr = [];
for (i = 0; i < 10000000; i++) {
arr.push(i);
}
console.timeEnd("for loop");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment