Script Preparation code:
AخA
 
var length = 1000000;
var fillWith = 5;
Tests:
  • Map

     
    const array = [...Array(length)].map(() => fillWith);
  • Array.apply + Fill

     
    const array = Array.apply([], { length }).fill(fillWith);
  • While Loop

    x
     
    let index = length - 1;
    const array = [];
    while (index-- > 0) array[index] = fillWith;
  • For Loop

     
    const array = [];
    for (let index = length - 1; index >= 0; index--) array[index] = fillWith;
  • New Array + Fill

     
    const array = new Array(length).fill(fillWith);
  • Array Literal With Length + Fill

     
    const array = [];
    array.length = length;
    array.fill(fillWith);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Map
    Array.apply + Fill
    While Loop
    For Loop
    New Array + Fill
    Array Literal With Length + Fill

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36
Chrome 99 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
Map 21.6 Ops/sec
Array.apply + Fill 0.0 Ops/sec
While Loop 16.2 Ops/sec
For Loop 16.2 Ops/sec
New Array + Fill 856.0 Ops/sec
Array Literal With Length + Fill 847.9 Ops/sec