Test name | Executions per second |
---|---|
from | 67.7 Ops/sec |
fill | 1172.2 Ops/sec |
const n = 10000, length = 50
const result = []
for (let i = 0; i < n; ++i) {
result.push(Array.from({length}, () => 0))
}
const n = 10000, length = 50
const result = []
for (let i = 0; i < n; ++i) {
result.push(Array(length).fill(0))
}