Test name | Executions per second |
---|---|
!! | 194155328.0 Ops/sec |
Boolean | 152396816.0 Ops/sec |
Comparison | 43507520.0 Ops/sec |
let a = !!12;
let b = !!'string';
let a = Boolean(12);
let b = Boolean('string');
let a = (12 == true);
let b = ('string' == true);