Tagged Questions
5
votes
2answers
2k views
Destructuring assignment in JavaScript
As can be seen in the Mozilla changlog for JavaScript 1.7 they have added destructuring assignment. Sadly I'm not very fond of the syntax (why write a and b twice?):
var a, b;
[a, b] = f();
...
2
votes
2answers
89 views
Can destructuring assignment be used to effect a projection in CoffeeScript?
I'm having some trouble understanding destructuring assignment in CoffeeScript. The documentation contains a couple of examples which together seem to imply that renaming objects during assignment can ...