Run details:
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Media Center PC 4.0; InfoPath.3; en-GB)
IE 7
Windows Vista
Desktop
4 years ago
Test name Executions per second
Array.prototype.slice 69731416.0 Ops/sec
spread operator 46120452.0 Ops/sec
Tests:
  • Array.prototype.slice

    AخA
     
    var params = [ "hello", true, 7 ];
    var other = [ 1, 2 ].slice();
  • spread operator

     
    var params = [ "hello", true, 7 ]
    var other = [ ...params ]