Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0
Firefox 96
Mac OS X 10.15
Desktop
3 years ago
Test name Executions per second
Push 563.7 Ops/sec
Unshift 173.8 Ops/sec
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);
    }