Tests:
  • No Try/Catch

    AخA
     
    let j = 0;
    for (let i = 0; i < 1000; i++) {
      j++;
    }
  • Try/Catch

     
    let j = 0;
    for (let i = 0; i < 1000; i++) {
      try { j++; } catch {}
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    No Try/Catch
    Try/Catch

    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/99.0.4844.83 Safari/537.36
Chrome 99 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
No Try/Catch 1679076.1 Ops/sec
Try/Catch 1732690.5 Ops/sec