Performance of Array vs. Object (v266)

Revision 266 of this benchmark created by Kirill Lebedev on


Setup

var arr = [],
      i,
      obj = {};
  for(i = 0; i < 100; i += 1) {
      arr.push(i);
      obj[i] = i;
  }
  
  function getRandomIndex(obj) {
     var idx = Math.floor(Math.random()*99);
     if(false === obj.hasOwnProperty(idx)) {
        while (false === obj.hasOwnProperty(idx)) {
            idx = Math.floor(Math.random()*99);
        }
     }
     return idx;
  }

Test runner

Ready to run.

Testing in
TestOps/sec
Array Performance
var idx = getRandomIndex(arr),
    a = arr[idx];

arr[idx] = Math.floor(Math.random()*99);
arr.splice(idx,0);
arr[length] = a;
ready
Object Performance
var idx = getRandomIndex(obj),
    a = obj[idx];

obj[idx] = Math.floor(Math.random()*99);
delete obj[idx];
obj[idx] = a;
ready

Revisions

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