Test name | Executions per second |
---|---|
Array.prototype.concat | 8702586.0 Ops/sec |
Push | 4375399.0 Ops/sec |
New array spread | 4738780.5 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 ]