Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:89.0) Gecko/20100101 Firefox/89.0
Firefox 89
Mac OS X 10.15
Desktop
3 years ago
Test name Executions per second
Concat 16327570.0 Ops/sec
Spread 20159024.0 Ops/sec
Unshift each 12331593.0 Ops/sec
Unshift together 22244720.0 Ops/sec
Tests:
  • Concat

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

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

     
    var params = [ "hello", true, 7 ];
    params.unshift(2);
    params.unshift(1);
  • Unshift together

     
    var params = [ "hello", true, 7 ];
    params.unshift(1, 2);