pre-allocated arrays (v56)

Revision 56 of this benchmark created on


Test runner

Ready to run.

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

Revisions

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