Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
javascript loops with reduce 4
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36
Browser:
Chrome 128
Operating system:
Mac OS X 10.15.7
Device Platform:
Desktop
Date tested:
one year ago
optimized-for
4K/s
for
4K/s
for-of
4K/s
reduce
3K/s
foreach
3K/s
for-in
3K/s
View exact numbers
Test name
Executions per second
✓
optimized-for
3,528 Ops/sec
for
3,527 Ops/sec
for-of
3,502 Ops/sec
reduce
3,433 Ops/sec
foreach
3,391 Ops/sec
for-in
3,349 Ops/sec
Tests:
foreach
const items = Array.from({length: 1000}, () => Math.floor(Math.random() * 40)); let index = 0; items.forEach(i => index++);
for-in
const items = Array.from({length: 1000}, () => Math.floor(Math.random() * 40)); let index = 0; const newArray = []; for (let i in items) { newArray.push(i); }
for-of
const items = Array.from({length: 1000}, () => Math.floor(Math.random() * 40)); let index = 0; const newArray = []; for (let i of items) { newArray.push(i); }
for
const items = Array.from({length: 1000}, () => Math.floor(Math.random() * 40)); let index = 0; const newArray = []; for(let i = 0; i < items.length; ++i) { newArray.push(items[i]); }
optimized-for
const items = Array.from({length: 1000}, () => Math.floor(Math.random() * 40)); let index = 0; const newArray = []; for(let i = items.length; i > 0; --i) { newArray.push(items[i]); }
reduce
const items = Array.from({length: 1000}, () => Math.floor(Math.random() * 40)); items.reduce((acc,value) => { acc.push(value); return acc; }, new Array());