Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
test looping
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (X11; Linux x86_64; rv:147.0) Gecko/20100101 Firefox/147.0
Browser:
Firefox 147
Operating system:
Linux
Device Platform:
Desktop
Date tested:
5 months ago
Test name
Executions per second
forEach
295565.8 Ops/sec
for of
276103.8 Ops/sec
for
293386.8 Ops/sec
Tests:
forEach
const arr = new Array( 100 ).fill( 0 ).map( (v,i) => i+ 1 ); let t = 0; arr.forEach( v => t += v ); console.log( t );
for of
const arr = new Array( 100 ).fill( 0 ).map( (v,i) => i+ 1 ); let t = 0; for( const v of arr ) { t += v; } console.log( t );
for
const arr = new Array( 100 ).fill( 0 ).map( (v,i) => i+ 1 ); let t = 0; for( let i = 0, num = arr.length; i < num; ++i ) { t += arr[i]; } console.log( t );