Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
if-else vs switch helper
(version: 0)
Comparing performance of:
Switch case vs if-else
Created:
one year ago
by:
Guest
Jump to the latest result
Tests:
Switch case
const role = "parent"; switch (role) { case "child: console.log("child"); break; case "parent": console.log("parent"); break; case "family": console.log("family"); break; }
if-else
const role = "parent"; if (a == "child") { console.log("child"); return; } if (a == "parent") { console.log("parent") return; } if (a == "family") { console.log("family") return; }
Rendered benchmark preparation results:
Suite status:
<idle, ready to run>
Run tests (2)
Previous results
Fork
Test case name
Result
Switch case
if-else
Fastest:
N/A
Slowest:
N/A
Latest run results:
No previous run results
This benchmark does not have any results yet. Be the first one
to run it!
Comments
Confirm delete:
Do you really want to delete benchmark?