我是使用 Code Academy 学习的初学者,我正在尝试用 JavaScript 编写一个简单的游戏,只是为了扩展我的理解。我无法破译为什么我的前几行代码不起作用。我要做什么应该很明显,但是确认命令根本不起作用。
这是代码:
var classChoice=prompt("You need to choose a class. Will you play as a wizard or as a warrior?").toLowerCase;
if (classChoice==="wizard"){
confirm("You have chosen wizard. Is this correct? (yes or no)");
}else if (classChoice==="warrior"){
confirm("You have chosen warrior. Is this correct?");
}
有人可以评论吗?