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:
3 months ago
Test name
Executions per second
spread
15512582.0 Ops/sec
push
20472158.0 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))