Test name | Executions per second |
---|---|
Push single | 1077081.1 Ops/sec |
Push spread | 1198104.0 Ops/sec |
Total spread | 1182317.6 Ops/sec |
x = [1, 2, 3]
y = []
x.forEach(e => y.push(e))
x = [1, 2, 3]
y = []
y = y.push(x)
x = [1, 2, 3]
y = []
y = [y, x]