// for integer division instead of comments? Are these guys on crack?
CoffeeScript 1.7.0
31–40 of 91 posts
Re: CoffeeScript 1.7.0
#32Re: CoffeeScript 1.7.0
#33I absolutely love CoffeeScript, with how it structures classes and functions makes sense (plus the python like syntax was a big plus for work). JavaScript seemed to unorganized, unclear, and cluttered for big projects.
Re: CoffeeScript 1.7.0
#34Is coffeescript still hip? I used to read a lot about it on here, maybe a year or two. Where is it at? Mainstream?
CoffeeScript played an important role in the development of ES6, but looking forward, it seems to have a same-but-different set of features vs. actual JavaScript, which may doom its future.
Hell, I'm still waiting for Array::map to be dependable.
Re: CoffeeScript 1.7.0
#35Is coffeescript still hip? I used to read a lot about it on here, maybe a year or two. Where is it at? Mainstream?
There has been a development of hate towards CoffeeScript in most JavaScript communities. CoffeeScript seems to be very popular in the non-JS communities that need to write JavaScript, like in the Ruby and Python web development communities. CoffeeScript was designed for non-JS coders to feel a lot more comfortable writing JS.
Re: CoffeeScript 1.7.0
#36Earlier quoted context omitted.
CoffeeScript played an important role in the development of ES6, but looking forward, it seems to have a same-but-different set of features vs. actual JavaScript, which may doom its future.
A doom dependent on full adoption of ES6 could easily be a decade out, to be fair. There aren't, as far as I know, any browsers that expose ES6 without non-standard compile/runtime flags, and we have to wait until there's enough adoption that the % of people using pre-ES6 browsers is negligible. Hell, I'm still waiting for Array::map to be dependable.
Re: CoffeeScript 1.7.0
#37Re: CoffeeScript 1.7.0
#38// for integer division instead of comments? Are these guys on crack?
Re: CoffeeScript 1.7.0
#39Is coffeescript still hip? I used to read a lot about it on here, maybe a year or two. Where is it at? Mainstream?
There has been a development of hate towards CoffeeScript in most JavaScript communities. CoffeeScript seems to be very popular in the non-JS communities that need to write JavaScript, like in the Ruby and Python web development communities. CoffeeScript was designed for non-JS coders to feel a lot more comfortable writing JS.
Re: CoffeeScript 1.7.0
#40There's also a nice writeup of some of the more user-visible changes available here: https://gist.github.com/aseemk/8637896
(couldn't edit parent, so) Top 3 things tl;dr Paren-free chaining (think jQuery or d3): bar = svg.append 'rect' .attr 'fill', 'papayawhip' .attr 'width', width .attr 'height', 0 .attr 'y', height .attr 'data-hover', data.slug Ellipsis for soaking up matching parameters, even if you don't want to name a variable: [first, ..., last] = arrayOfStuff lastArgumentFn = (..., last) -> last ... and generally improved source m…