Tests:
  • Compound let

    AخA
     
    for (let a = 0; a < 10000000; a++) {
      a += 1;
    }
  • Let

     
    for (let a = 0; a < 10000000; a++) {
      a = a + 1;
    }
  • Compound var

     
    for (var a = 0; a < 10000000; a++) {
      a += 1;
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Compound let
    Let
    Compound var

    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_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36
Chrome 101 on Mac OS X 10.14.6
View result in a separate tab
Test name Executions per second
Compound let 190.9 Ops/sec
Let 193.3 Ops/sec
Compound var 192.7 Ops/sec