Tests:
  • concat

    AخA
     
    const a1 = new Array(5).fill(undefined).map(a => Math.random() * 100);
    const a2 = new Array(5).fill(undefined).map(a => Math.random() * 100);
    const a3 = a1.concat(a2)
  • spread

     
    const a1 = new Array(5).fill(undefined).map(a => Math.random() * 100);
    const a2 = new Array(5).fill(undefined).map(a => Math.random() * 100);
    const a3 = [...a1,...a2]
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    concat
    spread

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36
Chrome 94 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
concat 717261.9 Ops/sec
spread 713509.6 Ops/sec