Tests:
  • Nullish coalescing

    x
     
    let a = null
    return a ?? "b";
  • If chains

     
    let v = null
    if(v !== null) {
      return a;
    }
    return "b";
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Nullish coalescing
    If chains

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36
Chrome 108 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
Nullish coalescing 1010312448.0 Ops/sec
If chains 1007971776.0 Ops/sec