Run details:
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
Mac OS X 10.15.7
Desktop
2 years ago
Test name Executions per second
No Try/Catch 1679076.1 Ops/sec
Try/Catch 1732690.5 Ops/sec
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 {}
    }