私はCoffeeScriptで次の構文を持つ人々を見てきました。
{variable} = something_else
これは何をしますか?
それは破壊的な割り当てです:
http://coffeescript.org/#destructuring
// From this coffescript
{a,b} = [1,2]
// the following javascript is generated:
var a, b, _ref;
_ref = [1, 2], a = _ref.a, b = _ref.b;