pre-allocated arrays (v49)

Revision 49 of this benchmark created by CC 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 = Array.apply(null, Array(1000000));
for (var i = 0; i < 1000000; i++) {
    arr[i] = i;
}
ready

Revisions

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