Run details:
Mozilla/5.0 (X11; Linux x86_64; rv:121.0) Gecko/20100101 Firefox/121.0
Firefox 121
Linux
Desktop
one year ago
Test name Executions per second
arrayUnshift123 612545.8 Ops/sec
arrayConcat123 50.9 Ops/sec
arraySpread123 14.1 Ops/sec
Script Preparation code:
AخA
 
var array = [1,2,3];
Tests:
  • arrayUnshift123

     
    array.unshift(0);
  • arrayConcat123

     
    array = array.concat([0])
  • arraySpread123

     
    array = [0, ...array]