Javascript控制台返回未预期的令牌

时间:2016-09-07 18:48:12

标签: javascript

我正在使用codecademy来学习javascript。我目前正在创建一个石头剪刀游戏,我不明白为什么我收到错误unexpected token else http://pastebin.com/pcCYZecd

3 个答案:

答案 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 ;