Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36
Chrome 112
Mac OS X 10.15.7
Desktop
one year ago
Test name Executions per second
Object.prototype.hasOwnProperty 7267685.0 Ops/sec
obj.hasOwnProperty 13745174.0 Ops/sec
Object.hasOwn 7612433.0 Ops/sec
Script Preparation code:
AخA
 
obj = {a: 42, b:66, c: 88}
Tests:
  • Object.prototype.hasOwnProperty

     
    Object.prototype.hasOwnProperty.call(obj, 'b');
  • obj.hasOwnProperty

     
    obj.hasOwnProperty('b');
  • Object.hasOwn

     
    Object.hasOwn(obj, 'b')