我正在尝试 ES6 的新解构特性,但在理解它或让它工作时遇到了一些麻烦。
var test = {
testme: "asd",
funcA: function() {
console.log("A");
}
};
var [ testme, funcA ] = test;
console.log(testme);
console.log(funcA);
我希望在控制台中看到,"asd"
但function() { ... }
我得到undefined
了两者。
使用火狐 28.0