Script Preparation code:
AخA
 
var size = 15;
Tests:
  • Array Constructor

     
    const array = new Array(size);
  • Array.from

     
    const array = Array.from({length: size});
  • Setting length manually

     
    const array = [];
    array.length = size;
  • Inserting a value in the last index

     
    const array = [];
    array[size - 1] = undefined;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array Constructor
    Array.from
    Setting length manually
    Inserting a value in the last index

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
Chrome 87 on Windows
View result in a separate tab
Test name Executions per second
Array Constructor 4008855.2 Ops/sec
Array.from 694161.4 Ops/sec
Setting length manually 4848290.5 Ops/sec
Inserting a value in the last index 3871614.8 Ops/sec