我在 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;