Script Preparation code:
x
 
a = Array(10000);
b = Array(300)
Tests:
  • array.splice

     
    a.splice(0, b.length, ...b);
  • for loop

     
        for (let i = 0; i < b.length; i++) {
          a[i] = b[i];
        }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    array.splice
    for loop

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 11 days ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36
Chrome 134 on Windows
View result in a separate tab
Test name Executions per second
array.splice 667386.0 Ops/sec
for loop 425431.5 Ops/sec