Script Preparation code:
AخA
 
window.obj = { a: 2 }
Tests:
  • Object.prototype.hasOwnProperty

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

     
    obj.hasOwnProperty('a');
  • null check

     
    obj.hasOwnProperty ? obj.hasOwnProperty('a') : true;
  • function check

     
    typeof obj.hasOwnProperty === 'function' ? obj.hasOwnProperty('a') : true;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Object.prototype.hasOwnProperty
    obj.hasOwnProperty
    null check
    function check

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36
Chrome 98 on Windows
View result in a separate tab
Test name Executions per second
Object.prototype.hasOwnProperty 3080517.0 Ops/sec
obj.hasOwnProperty 6703662.5 Ops/sec
null check 3303243.5 Ops/sec
function check 3488964.5 Ops/sec