Test name | Executions per second |
---|---|
null strict | 849266240.0 Ops/sec |
undefined strict | 808797120.0 Ops/sec |
null loose | 803177344.0 Ops/sec |
undefined loose | 780756928.0 Ops/sec |
var x;
var y = (x === null);
var y = (x === undefined);
var y = (x == null);
var y = (x === undefined);