单项选择题
var tom = 100;function xxx(){ console.log(tom); var tom = 10; console.log(tom);}xxx();
以上代码的结果是( )
A.100,10
B.100100
C.undefined,100
D.undefined,10
点击查看答案&解析
相关考题
