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

Revision 38 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 and without an Object.hasOwn(..) check.

Preparation HTML

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

function iterate2() {
   var ret = "", i = 0;
   for (i in obj) {
     ret += obj[i];
   }
   return ret;
}

function iterate3() {
   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 with Object.hasOwn check
tmp += iterate1();
ready
for-in with no check
tmp += iterate2();
ready
Object.keys(..).forEach(..)
tmp += iterate3();
ready

Revisions

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