Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0
Chrome 134
Windows
Desktop
13 days ago
Test name Executions per second
from 74.6 Ops/sec
fill 582.6 Ops/sec
Tests:
  • from

    AخA
     
    let n = 10000, length = 50
    const result = []
    for (let i = 0; i < n; ++i) {
        result.push(Array.from({length:length}).map((_, i) => i + 1))
    }
  • fill

     
    let n = 10000, length = 50
    const result = []
    for (let i = 0; i < n; ++i) {
        result.push(Array(5).fill(0).map(i => i + 1))
    }