Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko/20100101 Firefox/79.0
Firefox 79
Windows
Desktop
4 years ago
Test name Executions per second
arrayUnshift 189913.4 Ops/sec
arrayConcat 18.5 Ops/sec
arraySpread 14.3 Ops/sec
arrayPush 5217073.0 Ops/sec
Script Preparation code:
AخA
 
var array = [1,2,3];
var array2 = [4,5,6];
Tests:
  • arrayUnshift

     
    array.unshift(...array2);
  • arrayConcat

     
    array = array.concat(array2)
  • arraySpread

     
    array = [...array, ...array2]
  • arrayPush

     
    array.push(...array2);