CoffeeScript中的{bar} = foo声明语法是什么?

时间:2012-06-29 17:46:11

标签: javascript coffeescript

我在CoffeeScript中看到过具有以下语法的人。

{variable} = something_else

这是做什么的?

1 个答案:

答案 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;