单项选择题
(function(){
var foo;
console.log(typeof foo);
function foo(){}
foo = "foo";
})();打印结果是()
A.function
B.undefined
C.string
D.object
点击查看答案
相关考题
