Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // WRONG!
- if ( foo == bar || bar == baz || baz == quux ) {
- // code here
- }
- // WRONG!
- if ( foo == bar
- || bar == baz
- || baz == quux ) {
- // code here
- }
- // WRONG!
- if ( foo == bar
- || bar == baz
- || baz == quux )
- {
- // code here
- }
- // CORRECT
- if (
- ( foo == bar )
- || ( bar == baz )
- || ( baz == quux )
- ) {
- // code here
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement