我正在使用codecademy来学习javascript。我目前正在创建一个石头剪刀游戏,我不明白为什么我收到错误unexpected token else
http://pastebin.com/pcCYZecd
答案 0 :(得分:2)
只需删除;
,因为分号结束了if
语句。
通常在这个地方不需要任何分号,因为你使用block statement。
if(choice1 === choice2){
return "The result is a tie!";
}; // remove this semicolon
else if(choice1
答案 1 :(得分:1)
在else
:
if(choice1 === choice2){
return "The result is a tie!";
}; // <-- here
答案 2 :(得分:1)
if(choice1 === choice2){
return "The result is a tie!";
}; <-- remove ;