Tests:
  • concat

    AخA
     
    var params = new Array(1000);
    let other = [];
    for (let x = 0; x < 100; ++x) {
      other = other.concat(params);
    }
  • push

     
    var params = new Array(1000);
    let other = [];
    for (let x = 0; x < 100; ++x) {
      other.push(...params);
    }
  • spread

     
    var params = new Array(1000);
    let other = [];
    for (let x = 0; x < 100; ++x) {
      other = [...other, ...params];
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    concat
    push
    spread

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36
Chrome 95 on Windows
View result in a separate tab
Test name Executions per second
concat 64.1 Ops/sec
push 146.8 Ops/sec
spread 3.2 Ops/sec