Run details:
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
Windows
Desktop
4 years ago
Test name Executions per second
Array Push 31254584.0 Ops/sec
Test Splice 14129529.0 Ops/sec
Tests:
  • Array Push

    x
     
    var array = [];
      for (var idx = 0; idx < 10; idx++) {
        array[idx] = idx;
      }
    array.push(123);
  • Test Splice

     
    var array = [];
      for (var idx = 0; idx < 10; idx++) {
        array[idx] = idx;
      }
    array.splice(10, 0, 123);