Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0
Firefox 65
Windows
Desktop
6 years ago
Test name Executions per second
arrayUnshift123 484565.3 Ops/sec
arrayConcat123 15.9 Ops/sec
arraySpread123 10.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]