我在CoffeeScript中看到过具有以下语法的人。
{variable} = something_else
这是做什么的?
答案 0 :(得分:2)
这是解构分配:
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;