ウェブサイトのプロンプトを使用して簡単なアンケートを作成していますが、問題が発生しています。
このスクリプトで2つのエラーを受け取りました。最初に、「質問は定義されていません」、
第二に、私の最初のプロンプトの行の「引数リストの後に)がありません」何かアイデアはありますか?
<script>
var a = Math.floor((Math.random()*10)+1);
var b = Math.floor((Math.random()*10)+1);
var c = Math.floor((Math.random()*10)+1);
var wrong = 0;
function question()
{
for(x=1; x>10; x++)
{
prompt("Does" b"+"c " = ");
if(prompt.input == b + c)
{
question();
}else{
wrong++;
}
if(x==10)
{
alert("well you were wrong " + wrong" times");
}
}
}
</script>