|
|
|
|
|
by Pewpewarrows
4934 days ago
|
|
There are plenty of things that you can leave out when writing parseable source code, but don't because it would make the code horribly un-readable. That is, there's a reason for whitespace around operators, after commas, extraneous newlines, etc. It makes the code easier to read and maintain. Now while I'm willing to admit that this whole area is largely aesthetic and personal, if you submitted a line of code to me that was just this without the parentheses: > 2 * 3 + 1 I would reject the code review in a heartbeat. Part of making your code readable to others and less error-prone during maintenance is adding extraneous stuff to it that isn't necessary for the code to parse/compile/interpret. |
|