Script Preparation code:
x
 
for (i = 0; i < 10; i++) {
}
Tests:
  • hasOwnProperty

     
    const object = {
        property1: 1
    }
    Object.setPrototypeOf(object, {
      property2: 2
    });
    const result = object.hasOwnProperty('property1');
  • classical if

     
    const object = {
        property1: 1
    }
    Object.setPrototypeOf(object, {
      property2: 2
    });
    const result = object.property1 ? true : false;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    hasOwnProperty
    classical if

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36
Chrome 87 on Windows
View result in a separate tab
Test name Executions per second
hasOwnProperty 348025.3 Ops/sec
classical if 458604.9 Ops/sec