pre-allocated arrays (v35)

Revision 35 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
empty literal
var arr = [];
for (var i = 0; i < 1000000; i++) {
    arr[i] = i;
}
ready
pre-allocated array
var arr = new Array(1000000);
for (var i = 0; i < 1000000; i++) {
    arr[i] = i;
}
ready
pre-allocated array 2
var arr = [];
arr.length = 1000000;
for (var i = 0; i < 1000000; i++) {
    arr[i] = i;
}
ready
Array Push
var arr = [];
for (var i = 0; i < 1000000; i++) {
    arr.push( i );
}
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.