Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
for vs foreach vs for..of vs for..of over large entries
(version: 1)
Compare loop performance
Comparing performance of:
for vs foreach vs for..of vs for..of over entries
Created:
one year ago
by:
Guest
Jump to the latest result
Script Preparation code:
var array = Array.from({length: 10000}); var t;
Tests:
for
for (let i = 0; i < array.length; i++) { t = array[i]; }
foreach
array.forEach(function(v, i) { t = v; });
for..of
for (var v of array) { t = v; }
for..of over entries
for (var [i, v] of array.entries()) { t = v; }
Rendered benchmark preparation results:
Suite status:
<idle, ready to run>
Run tests (4)
Previous results
Fork
Test case name
Result
for
foreach
for..of
for..of over entries
Fastest:
N/A
Slowest:
N/A
Latest run results:
Run details:
(Test run date:
one year ago
)
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0
Browser/OS:
Firefox 134 on Windows
View result in a separate tab
Embed
Embed Benchmark Result
Test name
Executions per second
for
78753.2 Ops/sec
foreach
17307.2 Ops/sec
for..of
15883.3 Ops/sec
for..of over entries
8067.6 Ops/sec
Related benchmarks:
for vs foreach vs for..of vs for..of over entries
for vs foreach vs for..of vs for..of over entries (const)
for vs for with cached length vs foreach vs for..of
for vs foreach vs for..in vs for..of
for vs foreach vs for..of vs for..of over entries vs for in
for vs foreach vs for..of vs for..of over entries vs for in vs for cache vs for reverse
for vs foreach vs for..in vs for..of 2
for vs foreach vs for..of vs for..of over entries with big number of elements
for vs foreach vs for..in vs for..of skidson
Comments
Confirm delete:
Do you really want to delete benchmark?