Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36
Chrome 86
Windows
Desktop
4 years ago
Test name Executions per second
let 1931226.9 Ops/sec
var 1923771.8 Ops/sec
Script Preparation code:
AخA
 
"use strict";
Tests:
  • let

     
    let a = 0;
    for(let i = 0; i< 1000; i++){
        let b = i+2;
        a+=b;
    }
  • var

     
    var a = 0;
    for(var i = 0; i< 1000; i++){
        var b = i+2;
        a+=b;
    }