Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Array concat vs spread operator vs push large with smaller array added
(version: 1)
Compare the new ES6 spread operator with the traditional concat() method and push
Comparing performance of:
Array.prototype.concat vs spread operator vs Push
Created:
one year ago
by:
Guest
Jump to the latest result
Tests:
Array.prototype.concat
var params = Array(1000); var array = Array(100); var other = array.concat(params);
spread operator
var params = Array(1000); var array = Array(100); var other = [ ...array, ...params ]
Push
var params = Array(1000); var array = Array(100); var other = array.push(...params);
Rendered benchmark preparation results:
Suite status:
<idle, ready to run>
Run tests (3)
Previous results
Fork
Test case name
Result
Array.prototype.concat
spread operator
Push
Fastest:
N/A
Slowest:
N/A
Latest run results:
Run details:
(Test run date:
one year ago
)
User agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36
Browser/OS:
Chrome 124 on Mac OS X 10.15.7
View result in a separate tab
Embed
Embed Benchmark Result
Test name
Executions per second
Array.prototype.concat
1548080.5 Ops/sec
spread operator
247534.3 Ops/sec
Push
460680.1 Ops/sec
Related benchmarks:
Large Array concat vs spread operator vs push
Array.prototype.concat vs spread operator bigger arrays
Small Array concat vs spread operator vs push
Large Array concat vs spread operator vs pushqqqqq
Large Array concat vs spread operator vs push 300 elements
Large Array concat vs Array.push vs push
Array concat vs spread operator vs push *1000
Array concat vs spread operator vs push + spread 2023-08-21
Array concat vs spread operator vs push large array
Comments
Confirm delete:
Do you really want to delete benchmark?