Run details:
Mozilla/5.0 (Linux; Android 10; Redmi Note 7 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36
Chrome Mobile 105
Android
Mobile
2 years ago
Test name Executions per second
Object.prototype.hasOwnProperty 1085405.1 Ops/sec
obj.hasOwnProperty 2134917.5 Ops/sec
Object.hasOwn 1119248.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')