Run details:
Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0
Firefox 97
Linux
Desktop
3 years ago
Test name Executions per second
spread 593160.9 Ops/sec
slice 11063219.0 Ops/sec
splice 8879928.0 Ops/sec
Script Preparation code:
AخA
 
var array = Array.from({ length: 100 }).map((val, i) => i);
Tests:
  • spread

     
    var newArray = [...array];
  • slice

     
    var newArray = array.slice();
  • splice

     
    var newArray = array.splice();