My OCD makes me add \"break\" when writing case statements, even if they will not be executed. Consider the following code example:
switch(option) { cas
I would put the break in to show that you do not intend to fall through to next case.