Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
js spread vs push on new array
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:147.0) Gecko/20100101 Firefox/147.0
Browser:
Firefox 147
Operating system:
Windows
Device Platform:
Desktop
Date tested:
6 months ago
push
20.5M/s
spread
15.5M/s
View exact numbers
Test name
Executions per second
✓
push
20,472,158 Ops/sec
spread
15,512,582 Ops/sec
HTML Preparation code:
<!--your preparation HTML code goes here-->
Script Preparation code:
var arr1 = [ {"test1":"value1", "test2": "value2"} ] var arr2 = [ {"test3":"value3", "test3": "value3"} ]
Tests:
spread
var result = [...arr1, ...arr2]
push
var result = [] arr1.forEach(t => result.push(t)) arr2.forEach(t => result.push(t))