Script Preparation code:
AخA
 
var size = 100000;
var a = [];
for (var i = 0; i < size; i++){
  a.push(Math.random());
}
var json = JSON.stringify(a);
Tests:
  • Instantiate new array

    x
     
    var a1 = JSON.parse(json);
    a1 = [];
  • Set length to zero

     
    var a2 = JSON.parse(json);
    a2.length = 0;
  • Splice at index zero

     
    var a3 = JSON.parse(json);
    a3.splice(0, a3.length);
  • Pop all values

     
    var a4 = JSON.parse(json);
    while(a4.length > 0){
      a4.pop();
    }
  • JSON.parse baseline

     
    var a0 = JSON.parse(json);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Instantiate new array
    Set length to zero
    Splice at index zero
    Pop all values
    JSON.parse baseline

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/115.0
Firefox 115 on Windows
View result in a separate tab
Test name Executions per second
Instantiate new array 105.9 Ops/sec
Set length to zero 107.2 Ops/sec
Splice at index zero 116.0 Ops/sec
Pop all values 110.4 Ops/sec
JSON.parse baseline 108.7 Ops/sec