Test name | Executions per second |
---|---|
Array.prototype.concat | 7828252.5 Ops/sec |
Push | 25914156.0 Ops/sec |
New array spread | 21321446.0 Ops/sec |
var params = [ "hello", true, 7 ];
var other = [ 1, 2 ]
other = other.concat(params);
var params = [ "hello", true, 7 ];
var other = [ 1, 2 ]
other = other.push(params);
var params = [ "hello", true, 7 ]
var other = [ 1, 2 ]
var other = [ other, params ]