Test name | Executions per second |
---|---|
Array.prototype.concat Append | 10973729.0 Ops/sec |
spread operator Append | 30906408.0 Ops/sec |
Array.prototype.concat Preppend | 9895801.0 Ops/sec |
spread operator Preppend | 20817246.0 Ops/sec |
var params = [ "hello", true, 7 ];
var other = [ 1, 2 ].concat(params);
var params = [ "hello", true, 7 ]
var other = [ 1, 2, params ]
var params = [ "hello", true, 7 ];
var other = params.concat([ 1, 2 ]);
var params = [ "hello", true, 7 ]
var other = [ params, 1, 2 ]