Array Performance (v51)

Revision 51 of this benchmark created on


Description

Manual array lookups vs. holey arrays.

Setup

var a1 = [], a2 = [], o = {};
    var tempId = 0;

    for (var i = 1; i <= 500; i++) {
       tempId = 29700 + i;
       a1.push({id: tempId, name: 'name' + tempId});
       a2[tempId] = {id: tempId, name: 'name' + tempId};
       o[tempId.toString()] = {id: tempId, name: 'name' + tempId};
    }

Test runner

Ready to run.

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

Revisions

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