Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
Feature Requests
FAQ
Register
Log In
Run results for:
concat vs lodash.concat vs. push.apply vs. spread operator vs. push in for loop
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36
Browser:
Chrome 129
Operating system:
Windows
Device Platform:
Desktop
Date tested:
one year ago
Benchmark engine:
Benchmark.js
Array.prototype.concat
2.3M/s
spread operator
1.7M/s
Lodash concat
1.1M/s
Array.prototype.push.apply()
1.1M/s
cached for + push
424K/s
View exact numbers
Test name
Executions per second
✓
Array.prototype.concat
2,305,864 Ops/sec
spread operator
1,659,320 Ops/sec
Lodash concat
1,113,551 Ops/sec
Array.prototype.push.apply()
1,096,512 Ops/sec
cached for + push
424,286 Ops/sec
HTML Preparation code:
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
Script Preparation code:
var arr1 = ["what", "is", "this"]; var arr2 = ["this", "is", "a", "test", "hello", "how", "are", "you", "today"];
Tests:
Array.prototype.concat
var result = arr1.concat(arr2);
Lodash concat
var result = _.concat(arr1, arr2);
Array.prototype.push.apply()
Array.prototype.push.apply(arr1, arr2);
spread operator
var result = [arr1, ...arr2]
cached for + push
for (var i = 0, l = arr2.length; i < l; i++) { arr1.push(arr2[i]) }