Performance of Array vs. Object

Benchmark created by Christopher Froehlich on


Description

After seeing http://jsperf.com/javascript-associative-vs-non-associative-arrays, I thought the test could be improved.

Setup

var arr = [],
        i,
        obj = {};
    for(i = 0; i < 10000; i += 1) {
        arr.push(i);
        obj[i] = i;
    }
    
    function getRandomIndex(obj) {
       var idx = Math.floor(Math.random()*9999);
       if(false === obj.hasOwnProperty(idx)) {
          while (false === obj.hasOwnProperty(idx)) {
              idx = Math.floor(Math.random()*9999);
          }
       }
       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()*9999);
arr.splice(idx,0);
arr[length] = a;
 
ready
Object Performance
var idx = getRandomIndex(obj),
    a = obj[idx];

obj[idx] = Math.floor(Math.random()*9999);
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.