Array Performance (v8)

Revision 8 of this benchmark created on


Description

Manual array lookups vs. holey arrays.

Setup

function makeid()
{
    var text = "";
    var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";

    for( var i=0; i < 10; i++ )
        text += possible.charAt(Math.floor(Math.random() * possible.length));

    return text;
}

  Benchmark.prototype.setup = function() {
var end = 1000,offset = 680;
var a1 = [],a2 = [],o={};
for(var i=0;i<end ;i++){
 if(Math.random()>0.7) {
 a1.push({id:i,name:makeid()});
 a2[i]={id:i,name:makeid()};
 o[""+i]={id:i,name:makeid()};
}
else {
 a1.push({id:i,name:makeid(),otherprop:5});
 a2[i]={id:i,name:makeid(),otherprop:5};
 o[""+i]={id:i,name:makeid(),otherprop:5};
}
}
  
  };

Test runner

Ready to run.

Testing in
TestOps/sec
Manual Array Lookup
var id = offset;
for (var i = 0; i < a2.length; i++) {
  if (a2[i].id === id) {
    result = a2[i];
    break;
  }
}
ready
Holey Array by Index
var id = offset;
var result = a1[id];
ready
Object by Key
var id = '' + offset;
var result = o[id];
ready
Object by Indexed Key
var id = offset;
var result = o[id];
ready

Revisions

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