Test name | Executions per second |
---|---|
Nullish coalescing (??) | 13421010.0 Ops/sec |
Logical OR (||) | 13260146.0 Ops/sec |
Nullish coalescing (??) [short-circuit] | 2920657664.0 Ops/sec |
Logical OR (||) [short-circuit] | 2940441600.0 Ops/sec |
let x = undefined ?? 1;
let x = undefined || 1;
let x = 1 ?? undefined;
let x = 1 || undefined;