这是代码:
var name = window.prompt("What is your name").toLowerCase;
console.log(name);
它返回undefined
,这似乎令人困惑。难道它不能在我输入的字符串中登录到控制台吗?
答案 0 :(得分:0)
()
来电
toLowerCase
var name = window.prompt("What is your name").toLowerCase();
console.log(name);