filter versus dictionary

Benchmark created by Travis on


Setup

var array = [{"name":"Joe", "age":17}, {"name":"Bob", "age":17}, {"name":"Carl", "age": 35}];

Test runner

Ready to run.

Testing in
TestOps/sec
map
var ages = array.map(function(obj) { return obj.age; });
ages = ages.filter(function(v,i) { return ages.indexOf(v) == i; });
ready
dictionary
var unique = {};
var distinct = [];
    for( var i in array ){
     if( typeof(unique[array[i].age]) == "undefined"){
      distinct.push(array[i].age);
     }
     unique[array[i].age] = 0;
    }
ready

Revisions

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