Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36
Chrome 88
Mac OS X 11.2.1
Desktop
4 years ago
Test name Executions per second
Array.prototype.slice 19037340.0 Ops/sec
spread operator 18134888.0 Ops/sec
Script Preparation code:
AخA
 
var params = [ "hello", true, 7 , 3.03, "haha", false, null, undefined, 16];
Tests:
  • Array.prototype.slice

     
    const other = params.slice();
  • spread operator

     
    const other = [ ...params ];