Nov 3, 2020
Claiming if else statements are bad is just silly. There is nothing wrong with simple if else statements.
If you manage to create a monstrosity consisting of multiple nested if else if statements, then I agree. You shouldn't do that, because that will make the code easy to break and hard to maintain. There are probably better ways to refactor it.
KISS.