Script Preparation code:
x
 
var array = [];
for(var i = 0; i < 1000000; i++){array.push(Math.random());}
Tests:
  • pop

     
    while (array.length > 0)
    {
      array.pop();
    }
  • shift

     
    while (array.length > 0)
    {
      array.shift();
    }
  • length

     
    array.length = 0
  • reassignment

     
    array = []
  • .splice(0)

     
    array.splice(0);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    pop
    shift
    length
    reassignment
    .splice(0)

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36
Chrome 107 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
pop 10565134.0 Ops/sec
shift 10082531.0 Ops/sec
length 7021170.5 Ops/sec
reassignment 7890180.0 Ops/sec
.splice(0) 8190911.0 Ops/sec