Run details:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36
Chrome 85
Linux
Desktop
4 years ago
Test name Executions per second
Array.prototype.slice 13193777.0 Ops/sec
spread operator 12057498.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 ];