Tests:
  • Array.prototype.concat

    AخA
     
    var params = [ "hello", true, 7 ];
    var other = [ 1, 2 ].concat(params);
  • spread operator

     
    var params = [ "hello", true, 7 ]
    var other = [ 1, 2, ...params ]
  • Push

     
    var params = [ "hello", true, 7 ];
    var other = [ 1, 2 ].push(...params);
  • single push

     
    var params = [ "hello", true, 7 ];
    var other = [ 1, 2 ];
    other.push(params[0]);
    other.push(params[1]);
    other.push(params[2]);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array.prototype.concat
    spread operator
    Push
    single push

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36
Chrome 83 on Windows 7
View result in a separate tab
Test name Executions per second
Array.prototype.concat 3685863.0 Ops/sec
spread operator 25777298.0 Ops/sec
Push 17120542.0 Ops/sec
single push 29517440.0 Ops/sec