Tests:
  • var

    AخA
     
    var g = [];
    var f = function(x) { g.push(1,2,3) };
    f()
  • let

     
    let g = [];
    let f = function(x) { g.push(1,2,3) };
    f()
  • const

     
    const g = [];
    const f = function(x) { g.push(1,2,3) };
    f()
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    var
    let
    const

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 9 months ago)
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36
Chrome 126 on Linux
View result in a separate tab
Test name Executions per second
var 22122902.0 Ops/sec
let 27144858.0 Ops/sec
const 25696414.0 Ops/sec