Run details:
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
Windows
Desktop
4 years ago
Test name Executions per second
hasOwnProperty 348025.3 Ops/sec
classical if 458604.9 Ops/sec
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;