Run details:
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
Windows
Desktop
4 years ago
Test name Executions per second
Push single 1077081.1 Ops/sec
Push spread 1198104.0 Ops/sec
Total spread 1182317.6 Ops/sec
Tests:
  • Push single

    x
     
    x = [1, 2, 3]
    y = []
    x.forEach(e => y.push(e))
  • Push spread

     
    x = [1, 2, 3]
    y = []
    y = y.push(...x)
  • Total spread

     
    x = [1, 2, 3]
    y = []
    y = [...y, ...x]