拿这个简单的Test对象并将其粘贴到控制台中,你会看到它显示undefined
。该对象正在工作,因为它还会打印123
,但undefined
的内容是什么。
测试
var Test = new (function(){
return {
get testing(){
return "123";
}
}
});
console.log(Test.testing);
控制台输出:
123
undefined
答案 0 :(得分:4)
这是console.log
的返回值。
尝试
console.log(1);
给出了
1
undefined
但是,如果只键入
Test.testing
仅提供
"123"
答案 1 :(得分:1)
undefined
是console.log
调用