Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Reduce and Spread vs. Foreach and Mutate
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/123.0.0.0 Safari/537.36 OPR/109.0.0.0
Browser:
Opera 109
Operating system:
Windows
Device Platform:
Desktop
Date tested:
one year ago
Test name
Executions per second
Reduce and Spread
16362.6 Ops/sec
ForEach and Mutate (for .. in loop)
57068.5 Ops/sec
Mutate with Object.assign
36093.6 Ops/sec
Foreach and Mutate (Object.assign)
3753.2 Ops/sec
Script Preparation code:
var objectsArray = Array(1000).fill(() => { const key = Math.random().toString(36).substring(2, 5); const value = Math.random().toString(36).substring(2, 5); return {[key]: value}; });
Tests:
Reduce and Spread
var combined = objectsArray.reduce((memo, obj) => ({...memo, ...obj}), {});
ForEach and Mutate (for .. in loop)
var combined = {} objectsArray.forEach(obj => { for (key in obj) { combined[key] = obj[key]; } });
Mutate with Object.assign
var combined = Object.assign(...objectsArray)
Foreach and Mutate (Object.assign)
var combined = {} objectsArray.forEach(obj => Object.assign(combined, obj));