Run details:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36
Chrome 103
Linux
Desktop
2 years ago
Test name Executions per second
Array.prototype.concat() 5561429.0 Ops/sec
Spread operator 42689164.0 Ops/sec
Tests:
  • Array.prototype.concat()

    AخA
     
    const params = [1, 2, 3, 4]
    const other = params.concat(5)
  • Spread operator

     
    const params = [1, 2, 3, 4]
    const other = [...params, 5]