私はCodeAcademyを使用して学習する初心者であり、理解を深めるためにJavaScriptで簡単なゲームを作成しようとしています。コードの最初の数行が機能しない理由を理解できません。私が何をしようとしているのかは明らかですが、confirmコマンドがまったく機能していません。
コードは次のとおりです。
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?");
}
誰かコメントできますか?