Run details:
Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/119.0
Firefox 119
Linux
Desktop
one year ago
Test name Executions per second
arrayUnshift123 557316.9 Ops/sec
arrayConcat123 28.5 Ops/sec
arraySpread123 10.3 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]