Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36
Chrome 117
Mac OS X 10.15.7
Desktop
one year ago
Test name Executions per second
Array.prototype.slice 525207.2 Ops/sec
spread operator 577553.2 Ops/sec
Push operation 10684.3 Ops/sec
Script Preparation code:
AخA
 
var arr = Array.from({length: 10000}, () => Math.random())
Tests:
  • Array.prototype.slice

     
    var other =  arr.slice();
  • spread operator

     
    var other = [ ...arr ]
  • Push operation

     
    var other = []
    arr.forEach(el => other.push(el))