Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
var { a:x, b:y } = { a:7, b:8 }; console.log(x); // prints: 7 console.log(y); // prints: 8
这种赋值方法有效吗?这种方法会带来什么问题吗?
此分配只是无效的 javascript 并且将不起作用。这是这种方法会带来的唯一问题。
你为什么不直接使用
var v = { a:7, b:8 };
将字段a设置为 7 并b设置为 8 的对象分配给变量 v?
a
b