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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36
Browser:
Chrome 144
Operating system:
Linux
Device Platform:
Desktop
Date tested:
5 months ago
Test name
Executions per second
forEach
318560.0 Ops/sec
for of
344525.8 Ops/sec
for
357047.2 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 );