Script Preparation code:
AخA
 
var a = [];
Tests:
  • Push

     
    for (let i=0; i<1000; i++){
        a.push(i);
    }
    a.reverse()
  • Unshift

     
    for (let i=0; i<1000; i++){
        a.unshift(i);
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Push
    Unshift

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Safari/605.1.15
Safari 15 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
Push 263.2 Ops/sec
Unshift 5927.8 Ops/sec