找考题网-背景图
单项选择题

(function(){
var foo;
console.log(typeof foo);
function foo(){}
foo = "foo";
})();打印结果是()

A.function
B.undefined
C.string
D.object