Test name | Executions per second |
---|---|
Array.prototype.concat | 15522200.0 Ops/sec |
spread operator | 55946756.0 Ops/sec |
Push | 65829440.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 = [ 1, 2 ];
other.forEach((item) => {
other.push(item);
});