2
votes
2answers
366 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();
…
