Skip to content

Instantly share code, notes, and snippets.

@bga
Created July 18, 2010 00:28
Show Gist options
  • Save bga/479980 to your computer and use it in GitHub Desktop.
Save bga/479980 to your computer and use it in GitHub Desktop.
var i, n = 300000, a;
console.time("1");
i = n; while(i--)
{
a = [];
}
console.timeEnd("1");
console.time("2");
i = n; while(i--)
{
a = new Array();
}
console.timeEnd("2");
/*
ff3.6
1: 654
2: 906
2: 969
1: 580
chrome4
1: 708
2: 911
2: 1027
1: 576
chrome5
1: 980ms
2: 1296ms
2: 1256ms
1: 912ms
opera10.53
1: 609
2: 869
2: 758
1: 535
ie7
1: 1652
2: 2013
2: 2123
1: 1562
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment