单项选择题
运行下面运行程序
function print() {
var x = 1;
if(x == '1')
console.log('One');
if(x === '1')
console.log('Two');
}
print();
最后返回的结果是()
A.One
B.1
C.Two
D.2
点击查看答案
相关考题
