你好,我學習JavaScript目前Codecademy網站,我到紙剪刀石頭遊戲,雖然我得到一個錯誤語法錯誤「語法錯誤:意外的關鍵字‘其他’」爲JS
SyntaxError: Unexpected keyword 'else'
這裏是我的代碼,thnx! :)
var compare = function(choice1, choice2)
{
if(choice1 === choice2)
{
return ("The result is a tie");
}
else if(choice1 === "rock")
{
if(choice2 === "scissors")
return ("rock wins");
}
else
{
return ("paper wins");
}
else if(choice1 === "paper")
{
if(choice2 === "rock")
return ("paper wins");
}
else
{
return ("scissors wins");
}
}
你不能有別的,如果其他 – Ramanlfc
'else'塊應該永遠是「if if if」梯形圖的最後一個塊 – abhishekkannojia