DEV Community

Discussion on: A New Coding Style for Switch Statements in JavaScript/TypeScript

Collapse
 
motss profile image
Rong Sen Ng

Simple if... else statements will not hurt if the conditional checks are short enough. It does help improve code readability. But it's your call to use which method that suits you best.

Collapse
 
nebrius profile image
Bryan Hughes

I personally like the extra structure that switch statements bring for iterating over possible variations in value.