Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36
Chrome 108
Mac OS X 10.15.7
Desktop
2 years ago
Test name Executions per second
concat 18202.9 Ops/sec
spread 9640.4 Ops/sec
Script Preparation code:
AخA
 
var firstArray = Array.from({length : 50000}, (v,i) => ({id : i, name : `firstArray${i}`}))
var secondArray = Array.from({length : 50000}, (v,i) => ({id : i, name : `secondArray${i}`}))
Tests:
  • concat

     
    return firstArray.concat(secondArray);
  • spread

     
    return [...firstArray,secondArray];