3
votes
What to put in the IF block and what to put in the ELSE block?
If the code is to check for an error condition, I prefer to put that code first, and the "successful" code second; conceptually, this keeps a function call and its error-checking code together, whi …
12
votes
Which coding style you use for ternary operator?
The ternary operator is generally to be avoided, but this form can be quite readable:
result = (foo == bar) ? result1 :
(foo == baz) ? result2 :
(foo == qu …
