DEV Community

Discussion on: Code Tip: Avoid unnecessary else statements

Collapse
 
willglyles profile image
willglyles • Edited

Sometimes, yes. But generally, I don't agree. Omitting the else statement can be confusing to readers, especially if the if block has a fair amount of code (including other branches with return statements). I usually include the else statement for readability, except in trivial cases such as your example.

Collapse
 
georgehanson profile image
George Hanson

Like anything it all depends. There are cases when it is useful and others where it is not. In a simple case like this, I think it reduces visual debt. But it's all up to the individual developer.