Tests:
  • dynamic

    AخA
     
    const array = [];
    for (let i=0; i<10000000; i++) {
    array[i] = 1;
    } 
  • Preallocation

     
    const array = new Array(10000000);
    for (let i=0; i<10000000; i++) {
    array[i] = i;
    } 
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    dynamic
    Preallocation

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (iPhone; CPU iPhone OS 17_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.1.1 Mobile/15E148 Safari/604.1
Mobile Safari 17 on iOS 17.1.1
View result in a separate tab
Test name Executions per second
dynamic 34.6 Ops/sec
Preallocation 14.2 Ops/sec