Script Preparation code:
AخA
 
var arr = Array(100).fill([{n: ''}]);
Tests:
  • Array.prototype.concat

     
    var params = [ "hello", true, 7 ];
    var other = arr.concat(params);
  • spread operator

     
    var params = [ "hello", true, 7 ];
    var other = [ ...arr, ...params ];
  • array.push

     
    arr.push("hello", true, 7);
    var other = arr;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

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

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 5 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36
Chrome 81 on Mac OS X 10.15.4
View result in a separate tab
Test name Executions per second
Array.prototype.concat 2076648.6 Ops/sec
spread operator 2358425.5 Ops/sec
array.push 3955302.5 Ops/sec