首页题库练习题目详情
Web程序设计单选题中等

考虑以下代码:function test() { let x = 10; if (true) { let x = 20; } console.log(x); },执行后会输出什么?

A10
B20
Cundefined
D错误