单项选择题
var a = 200;
function fun2(){
console.log(a);
var a = 100;
}
fun2();
输出结果()
A.undefined
B.报错
C.200
D.100
点击查看答案
相关考题
