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))
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    from
    fill

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 5 days ago)
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 on Windows
View result in a separate tab
Test name Executions per second
from 74.6 Ops/sec
fill 582.6 Ops/sec