Script Preparation code:
AخA
 
var hasOwnProperty = Object.prototype.hasOwnProperty;
var obj = { a: 1, b: 2, c: 3, d: 4, e: 5 };
Tests:
  • undefined

     
    undefined !== obj.d;
  • typeof

     
    'undefined' !== typeof obj.d;
  • in

     
    'd' in obj;
  • hasOwnProperty

     
    hasOwnProperty.call( obj, 'd' );
  • bool

     
    !! obj.d;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    undefined
    typeof
    in
    hasOwnProperty
    bool

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 6 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36
Chrome 69 on Windows
View result in a separate tab
Test name Executions per second
undefined 3252326.5 Ops/sec
typeof 9773020.0 Ops/sec
in 8927788.0 Ops/sec
hasOwnProperty 4524568.0 Ops/sec
bool 9799933.0 Ops/sec