选择篇(032)-下面代码的输出是什么?

var num = 8;
var num = 10;

console.log(num);
A: 8
B: 10
C: SyntaxError
D: ReferenceError

参考答案

你可能感兴趣的:(javascript前端面试)