Script Preparation code:
AخA
 
var obj = {
  $props : ['a','b','c'],
  a:1,
  b:2,
  c:3
}
Tests:
  • Object.keys()

     
    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++;
    }
  • getOwnPropertyNames()

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

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

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Object.keys()
    getOwnPropertyNames()
    for ... in loop

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36
Chrome 119 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
Object.keys() 9906305.0 Ops/sec
getOwnPropertyNames() 9410627.0 Ops/sec
for ... in loop 26696090.0 Ops/sec