Test case name | Result |
---|---|
const value = 1; const isNil = value == null; | |
const value = 1; const myIsNil = value === undefined || value === null; |
Test name | Executions per second |
---|---|
const value = 1; const isNil = value == null; | 151331792.0 Ops/sec |
const value = 1; const myIsNil = value === undefined || value === null; | 12923109.0 Ops/sec |