Tagged Questions
3
votes
9answers
393 views
General programming - else or else if for clarity
In a situation where a variable could have two different values, and you do something if its one, something differnent if its the other, would you just do:
if(myVariable == FIRST_POSSIBLE_VALUE) { ...