Skip to content

Instantly share code, notes, and snippets.

@xantus
Created June 8, 2010 00:33
Show Gist options
  • Save xantus/429423 to your computer and use it in GitHub Desktop.
Save xantus/429423 to your computer and use it in GitHub Desktop.
var MAX = 10000000, i;
var arr = [];
console.time("assignment");
for (i = 0; i < MAX; i++) {
arr[arr.length] = i;
}
console.timeEnd("assignment");
arr.length = 0;
console.time("push");
for (i = 0; i < MAX; i++) {
arr.push( i );
}
console.timeEnd("push");
arr.length = 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment