Script Preparation code:
AخA
 
window.bigArray = (new Array(10000)).fill(null).map((el, index) => index);
Tests:
  • array[index]

    x
     
    for(let index = 0; index < 10000; index ++) {
      const current = bigArray[index];
      console.log(current);
    }
  • array.pop()

     
    for(let index = 0; index < 10000; index ++) {
      const current = bigArray.pop();
      console.log(current);
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    array[index]
    array.pop()

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 months ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36
Chrome 133 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
array[index] 51.5 Ops/sec
array.pop() 48.7 Ops/sec