pre-allocated arrays (v57)

Revision 57 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
empty literal
var arr = [];
arr[9056]=97;
var element = arr[2345];
ready
pre-allocated array
var arr = new Array(1000000);
arr[9056]=97;
var element = arr[2345];
ready

Revisions

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