In a switch statement, does it matter if I put the default condition at the top or bottom (or anywhere in between)?
Created May 14, 2012
John Mitchell
You can put the default: labeled clause anywhere you can put any of the switch's cases. In fact, you don't have to specify a default case at all.