Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0) Gecko/20100101 Firefox/91.0
Firefox 91
Mac OS X 10.15
Desktop
3 years ago
Test name Executions per second
for let 3362078.0 Ops/sec
for var 3411045.0 Ops/sec
Script Preparation code:
AخA
 
function doSomethingWith(i) {
}
Tests:
  • for let

     
    for (let i = 0; i < 500; ++i) {
        doSomethingWith(i);
    }
  • for var

     
    for (var i = 0; i < 500; ++i) {
        doSomethingWith(i);
    }