DEV Community

Discussion on: Whats the most irritating "if statement condition" that you've come across?

Collapse
 
val_baca profile image
Valentin Baca

To be a bit fair, the ternary operator can be a bit decisive and if it goes over several lines, you're usually better off with if-else.

The best part is your example doesn't even need a ternary operator lol

isValid = validate(objMyObj);
Thread Thread
 
makiten profile image
Donald

Yep, that was what made it even more hilarious. They applied the same logic in your ternary example in a normal if/else.

Would you believe me if I told you they said they did code reviews?