Script Preparation code:
AخA
 
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

     
    obj.hasOwnProperty( '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: 4 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36
Chrome 88 on Windows
View result in a separate tab
Test name Executions per second
undefined 2088645.2 Ops/sec
typeof 5649508.0 Ops/sec
in 5971808.5 Ops/sec
hasOwnProperty 5146062.0 Ops/sec
bool 4397868.5 Ops/sec