Tests:
  • Array.prototype.concat

    AخA
     
    var params = [ "hello", {one: 'two'} , 4, 3, 2, ['one', 'two', 'three'] ];
    var other = [ 1, 2 ].concat(params);
  • spread operator

     
    var params = [ "hello", {one: 'two'} , 4, 3, 2, ['one', 'two', 'three'] ];
    var other = [ 1, 2, ...params ]
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

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

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36
Chrome 81 on Mac OS X 10.14.6
View result in a separate tab
Test name Executions per second
Array.prototype.concat 6494781.5 Ops/sec
spread operator 21639738.0 Ops/sec