Test name | Executions per second |
---|---|
spread | 892461.6 Ops/sec |
p-push | 948853.7 Ops/sec |
for of | 738591.8 Ops/sec |
var a = [1,1,1,1,23,,5,6,3,2132,,66,456,,546];
var s = []
s.push(a);
Array.prototype.push.apply(s, a);
for (const item of a) {
s.push(item);
}