gpt4 book ai didi

javascript - 解构返回 undefined variable

转载 作者:行者123 更新时间:2023-11-30 17:33:13 25 4
gpt4 key购买 nike

我正在尝试 ES6 的新解构特性,但在理解它或让它工作方面遇到了一些困难。

var test = {
testme: "asd",
funcA: function() {
console.log("A");
}
};
var [ testme, funcA ] = test;
console.log(testme);
console.log(funcA);

我希望在控制台中看到 "asd"function() { ... } 但我得到的都是 undefined

使用 Firefox 28.0

最佳答案

如果你解构一个对象你必须使用对象的结构:

var {testme, funcA} = test;

关于javascript - 解构返回 undefined variable ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22563617/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com