pre-allocated arrays (v64)

Revision 64 of this benchmark created on


Test runner

Ready to run.

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

Revisions

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