if (foo) return bar; return baz;
...is cleaner than...
if (foo) { return bar; } else { return baz; }
...which is silly.
No comments:
Post a Comment