for-in versus Object.keys(..).forEach(..) (v33)

Revision 33 of this benchmark created on


Description

Testing if the perf hit for Object.keys(..).forEach(..) is enough to matter as compared to for-in with a hasOwnProperty(..) check.

Preparation HTML

<script>
function iterate1() {
   var ret = "", i = 0;
   for (i in obj) {
      if( obj.hasOwnProperty( i ) ){
          ret += obj[i];
      }
   }
   return ret;
}

function iterate2() {
   var ret = "", i = 0;
   Object.keys(obj).forEach(function(key){
      ret += obj[key];
   });
}

// object with 10 keys in it
var obj = {
   a: "a",
   b: "b",
   c: "c",
   d: "d",
   e: "e",
   f: "f",
   g: "g",
   h: "h",
   i: "i",
   j: "j"
};

var tmp;
</script>

Setup

tmp = "";

Test runner

Ready to run.

Testing in
TestOps/sec
for-in
tmp += iterate1();
ready
Object.keys(..).forEach(..)
tmp += iterate2();
ready

Revisions

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