Why does everybody compare CoffeeScript against vanilla JavaScript? I find using underscore makes my code sufficiently elegant that I've never felt the need to switch to CoffeeScript.
Personally, I find this quite readable. And honestly, my comment was more about comparing CoffeeScript to its compiled JavaScript output, as is done in the slides. The compiled output is incredibly verbose and gives the false impression that JavaScript is always complicated.
Comments
Why does everybody compare CoffeeScript against vanilla JavaScript? I find using underscore makes my code sufficiently elegant that I've never felt the need to switch to CoffeeScript.
You could also do it with chain, which could make the first example a bit simpler to read and write. It is something like:
I often use CoffeeScript + UnderscoreYou don't even need to call _.chain or value – underscore already does this automatically. You can also write it like so, if you like:
Personally, I find this quite readable. And honestly, my comment was more about comparing CoffeeScript to its compiled JavaScript output, as is done in the slides. The compiled output is incredibly verbose and gives the false impression that JavaScript is always complicated.[deleted]
He's talking about underscore.js which coincidentally was created by the same guy, Jeremy Ashkenas, that created CoffeeScript (and Backbone.js).
Underscore actually is still useful with CS. You just don't need it as often as a lot of the list ops are built into the language.
bentlegen is probably talking about http://underscorejs.org/
Ah right, now I feel stupid.