Script Preparation code:
x
 
start = 0
stop = 10000
x = []
for(var i = 0; i < 10000; i++) {
  x.push(i)
}
Tests:
  • Push single

     
    y = []
    x.forEach(e => y.push(e))
  • Push spread

     
    y = []
    y = y.push(...x)
  • Total spread

     
    y = []
    y = [...y, ...x]
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Push single
    Push spread
    Total spread

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36 Edg/86.0.622.38
Chrome 86 on Windows
View result in a separate tab
Test name Executions per second
Push single 691.6 Ops/sec
Push spread 44649.6 Ops/sec
Total spread 26947.0 Ops/sec