Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
else vs continue vs short if
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:141.0) Gecko/20100101 Firefox/141.0
Browser:
Firefox 141
Operating system:
Windows
Device Platform:
Desktop
Date tested:
8 months ago
Test name
Executions per second
else
147.4 Ops/sec
continue
138.5 Ops/sec
short if
135.4 Ops/sec
Tests:
else
let array = []; for (let i = 2000000; i > 0; i--) { if (i % 2) { array.push(1); } else { array.push(2); } }
continue
let array = []; for (let i = 2000000; i > 0; i--) { if (i % 2) { array.push(1); continue; } array.push(2) }
short if
let array = []; for (let i = 2000000; i > 0; i--) { array.push(i % 2 ? 1 : 2); }