pre-allocated arrays (v58)

Revision 58 of this benchmark created on


Test runner

Ready to run.

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

Revisions

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