Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36
Chrome 133
Mac OS X 10.15.7
Desktop
2 months ago
Test name Executions per second
getOwnPropertyNames 33878768.0 Ops/sec
for ... in 64689564.0 Ops/sec
Script Preparation code:
AخA
 
var obj = {
  $props : ['a','b','c'],
  a:1,
  b:2,
  c:3
}
Tests:
  • getOwnPropertyNames

     
    const arr = Object.keys(obj);
    let n = 0;
    for (let i = 0; i < arr.length; i++) {
      const k = arr[i];
      if (k.charAt(0) == '$') continue;
      n++;
    }
  • for ... in

     
    let n = 0;
    for (const k in obj) {
      if (k.charAt(0) == '$') continue;
      n++;
    }