> One reason I've seen 2 preferred to 4 (apart from keeping line lengths
> down) is that:

> if (somethingHere() &&
> somethingElse())
> doSomething();

> is less clear about what's condition and what's body the if body is than:

> if (somethingHere() &&
> somethingElse())
> doSomething();

Changing the line length policy would also avoid needing to wrap the multiple 
conditions onto separate lines. 
_______________________________________________
dev-platform mailing list
dev-platform@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-platform

Reply via email to