Script Preparation code:
AخA
 
const length = 100000
Tests:
  • Array from

     
    function arrayFrom() {
        const array = Array.from({length: length}, x => x = true)
    }
  • Array loop

     
    function arrayLoop() {
        const array = [];
        for (let i = 0; i < length; i++) array.push(true);
    }
  • Array(length).fill

     
    function arrayFill() {
        const array = Array(length).fill(true);
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array from
    Array loop
    Array(length).fill

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 7 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36
Chrome 58 on Mac OS X 10.12.5
View result in a separate tab
Test name Executions per second
Array from 49608240.0 Ops/sec
Array loop 52680016.0 Ops/sec
Array(length).fill 52236356.0 Ops/sec