Tests:
  • Array.apply

    AخA
     
    Array.apply(null, new Array(10)).map(() => false);
  • Array.from

     
    Array.from({ length: 10}, () => false);
  • map

     
    new Array(10).map(() => false);
  • Loop and assign

     
    const r = [];
    for (let i = 0; i < 10; i++) r[i] = false;
  • Loop and push

     
    const r = [];
    for (let i = 0; i < 10; i++) r.push(false);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array.apply
    Array.from
    map
    Loop and assign
    Loop and push

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.67
Chrome 114 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
Array.apply 1578336.4 Ops/sec
Array.from 707714.4 Ops/sec
map 4302881.0 Ops/sec
Loop and assign 24591278.0 Ops/sec
Loop and push 23934880.0 Ops/sec