SyntaxError(CODEACADEMY)

时间:2015-10-15 18:10:41

标签: javascript

我遇到了以下问题。任何帮助,将不胜感激。我的电脑说明如下:

  

哎呀,再试一次。你的语法有问题。在条件之后的SyntaxError:missing)。

这可以找到吗?还是有其他问题吗?任何信息/想法/想法都表示赞赏。

这是我的代码:

// Check if the user is ready to play!
confirm ("I am ready to play!");
var age = prompt ("What's your age");
if (age is less than 13);
{
    console.log ("You can't play this game!");
}
else
{
    console.log ("This game was created for you. Play on!");
}

1 个答案:

答案 0 :(得分:3)

您使用的语法不正确。使用if (age < 13)代替if (age is less than 13);。请注意,结束;

后没有)