Test name | Executions per second |
---|---|
Array.prototype.concat | 7805219.0 Ops/sec |
spread operator | 37972360.0 Ops/sec |
Array.prototype.flat | 1075347.8 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], params].flat();