|
|
|
|
|
by untog
5032 days ago
|
|
just how much more cognitive effort is used in parsing and debugging the syntax of CS Have you tried CS? It's far more readable, by virtue of not having "function() {}" splattered all over the page. I don't care/worry about keystroke reductions, I care about readable code. The lack of curly brackets and addition of significant whitespace absolutely does make for more readable code. |
|
My code already has significant whitespace; it's required by styleguide and linting. CS has prolific issues with whitespace usage, especially when it comes to parsing function arguments and lines broken over multiple lines. Just look through this or any other thread on CS being pushed.
CS often has mind fucks, and I'd rather have to ignore a couple lines with } on them.
Note: I mostly write in Python, if that gives any indication into how I very much enjoy significant whitespace.