Tests:
  • Array.prototype.concat

    AخA
     
    var one = [ 'one', 'two', 'three' ];
    var two = [ 'four', 'five', 'six' ];
    var three = one.concat(two);
  • spread operator

     
    var one = [ 'one', 'two', 'three' ];
    var two = [ 'four', 'five', 'six' ];
    var three = [ ...one, ...two ];
  • Push

     
    var one = [ 'one', 'two', 'three' ];
    var two = [ 'four', 'five', 'six' ];
    var three = one.push(...two);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array.prototype.concat
    spread operator
    Push

    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
Chrome 86 on Windows
View result in a separate tab
Test name Executions per second
Array.prototype.concat 3603881.5 Ops/sec
spread operator 13573422.0 Ops/sec
Push 12792379.0 Ops/sec