Tests:
  • For Loop fill

    AخA
     
    let arrayTest = new Array(10000000);
    for (let i = 0; i < arrayTest.length; i++){
      arrayTest[i] = undefined;
    }
  • Array Fill

     
    let arrayTest = new Array(10000000).fill(undefined);
  • aasdasd

     
    let arrayTest = [];
    for (let i = 0; i < 10000000; i++){
      arrayTest[i] = undefined;
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    For Loop fill
    Array Fill
    aasdasd

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:106.0) Gecko/20100101 Firefox/106.0
Firefox 106 on Windows
View result in a separate tab
Test name Executions per second
For Loop fill 5.3 Ops/sec
Array Fill 6.0 Ops/sec
aasdasd 5.5 Ops/sec