Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:59.0) Gecko/20100101 Firefox/59.0
Firefox 59
Mac OS X 10.13
Other
6 years ago
Test name Executions per second
Array.prototype.concat 91078.8 Ops/sec
spread operator 83130.4 Ops/sec
Script Preparation code:
AخA
 
var array1 = Array(400).fill().map(() => Math.round(Math.random() * 40));
var array2 = Array(400).fill().map(() => Math.round(Math.random() * 40));
Tests:
  • Array.prototype.concat

     
    var others = array1.concat(array2);
  • spread operator

     
    var others = [...array1, ...array2];