DEV Community

Discussion on: The Most POWERFUL [JavaScript] Function

Collapse
 
cleancodestudio profile image
Clean Code Studio • Edited

Oooo, also an after point, this example above is a great show case of why the ternary should be used in place of if else when possible.

If else trees out the possible states. Ternaries do not. This was an interesting one - thanks for your comment @nicholasmenez , it has me thinking deep into the details.