CoffeeScript’s spread syntax was adopted into ES2015, but they flipped the position of the dots from the right to the left: ```coffee foo args... # foo(...args); ``` We can’t flip them to the left in CoffeeScript without needlessly breaking lots of legacy code, but what about allowing the dots on either side? ```coffee foo args... # foo(...args); # or foo ...args # foo(...args); ```
CoffeeScript’s spread syntax was adopted into ES2015, but they flipped the position of the dots from the right to the left:
We can’t flip them to the left in CoffeeScript without needlessly breaking lots of legacy code, but what about allowing the dots on either side?