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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36
Browser:
Chrome 148
Operating system:
Mac OS X 10.15.7
Device Platform:
Desktop
Date tested:
8 hours ago
Test name
Executions per second
forEach
654761.2 Ops/sec
for of
716067.4 Ops/sec
for
711929.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 );