Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36
Chrome 126
Windows
Desktop
7 months ago
Test name Executions per second
Array.push(x) 854.1 Ops/sec
array[n]=x 925.9 Ops/sec
Script Preparation code:
AخA
 
var LEN = 10000;
var arr = [];
Tests:
  • Array.push(x)

     
    for (var x = 0; x < LEN; x++) arr.push(x);
  • array[n]=x

     
    for (var x = 0; x < LEN; x++) arr[x] = x;