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 10930245.0 Ops/sec
Test Splice 4192255.5 Ops/sec
Script Preparation code:
AخA
 
var array = [];
  for (var idx = 0; idx < 1000; idx++) {
    array[idx] = idx;
  }
Tests:
  • Array Push

     
    array.push(123)
  • Test Splice

     
    array.splice(array.length, 0, 123);