DEV Community

Discussion on: Stop using if else

Collapse
 
coolprofessor profile image
coolprofessor • Edited

I agree with that statement. When people hear "Stop using if else", they think you mean this:

age = 27

if( age >= 18){
     alert("You are a legal adult!")
}
if( (age >=18) === false ){
     alert("You are not a legal adult")
}
Enter fullscreen mode Exit fullscreen mode

Although, I think that this article has a good point.

Some comments have been hidden by the post's author - find out more