Test name | Executions per second |
---|---|
Push single | 691.6 Ops/sec |
Push spread | 44649.6 Ops/sec |
Total spread | 26947.0 Ops/sec |
start = 0
stop = 10000
x = []
for(var i = 0; i < 10000; i++) {
x.push(i)
}
y = []
x.forEach(e => y.push(e))
y = []
y = y.push(x)
y = []
y = [y, x]