Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
forEach vs for of (without indexes)
(version: 1)
Comparing performance of:
forEach vs for of vs for
Created:
one month ago
by:
Guest
Jump to the latest result
Script Preparation code:
var arr = []; for (let i = 0; i < 10000; i++) { arr.push(`string number ${i}`) }
Tests:
forEach
arr.forEach(value => { const foo = `${value} test`; });
for of
for (const value of arr) { const foo = `${value} test`; }
for
for (let i = 0; i < arr.length; i++) { const foo = `${arr[i]} test`; }
Rendered benchmark preparation results:
Suite status:
<idle, ready to run>
Run tests (3)
Previous results
Fork
Test case name
Result
forEach
for of
for
Fastest:
N/A
Slowest:
N/A
Latest run results:
Run details:
(Test run date:
one month ago
)
User agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36
Browser/OS:
Chrome 146 on Mac OS X 10.15.7
View result in a separate tab
Embed
Embed Benchmark Result
Test name
Executions per second
forEach
51931.7 Ops/sec
for of
61201.0 Ops/sec
for
40380.0 Ops/sec
Related benchmarks:
for-vs-foreach-vs-forof
for-vs-foreach-vs-forof
for of vs forEach vs for
Array loops: for vs for in vs for of vs forEach vs map [fixed for IE]
for..of vs for vs forEach
for (i < n) vs forEach vs for...of
forEach vs optimized for vs for of vs usual for
Array loop vs foreach vs for_of
forEach vs for each vs for of vs for let
Comments
Confirm delete:
Do you really want to delete benchmark?