Script Preparation code:
x
 
var array = [];
  for (var idx = 0; idx < 1000; idx++) {
    array[idx] = idx;
  }
var len = array.length;
Tests:
  • Array Push

     
    array.push(123)
  • Test Splice

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

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array Push
    Test Splice

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36
Chrome 84 on Windows
View result in a separate tab
Test name Executions per second
Array Push 11082777.0 Ops/sec
Test Splice 19.7 Ops/sec