Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
Feature Requests
FAQ
Register
Log In
Run results for:
For Difference
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:128.0) Gecko/20100101 Firefox/128.0
Browser:
Firefox 128
Operating system:
Mac OS X 10.15
Device Platform:
Desktop
Date tested:
2 years ago
Benchmark engine:
Benchmark.js
While
177/s
Let dentro
169/s
Let fora
168/s
View exact numbers
Test name
Executions per second
✓
While
177 Ops/sec
Let dentro
169 Ops/sec
Let fora
168 Ops/sec
Tests:
Let dentro
for(let i=0; i<1000; i++){ console.log(i) }
Let fora
let i = 0; for(; i<1000; i++){ console.log(i) }
While
let i = 0; while(i < 1000) { console.log(i); i++; }