Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36
Chrome 66
Windows
Other
6 years ago
Test name Executions per second
Array.prototype.concat 2758906.8 Ops/sec
spread operator 2458994.5 Ops/sec
jQuery merge 865095.6 Ops/sec
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 ]
  • jQuery merge

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