-3
if(userThree === "Yes");
{
console.log("You go to your car and realize you've left it unlocked.);
}
else;
{
console.log("You continue to eat your meal.");
}

我把它放在 JS Bin 上,但它继续说:期望一个标识符,而不是看到'else'。期望一个赋值或函数调用,而是看到一个表达式。

我不知道如何解决这个问题

4

2 回答 2

2

在您的第一个 console.log 中,您的字符串没有被完全引用:

"You go to your car and realize you've left it unlocked." // <- string needs to end with a quotation mark

此外,在这些(见下文)位置使用分号不会给您想要的结果。

if(userThree === "Yes"); <-

else; <-
于 2013-05-28T01:00:23.560 回答
2

您在下面的行中缺少一个结束双引号:

console.log("You go to your car and realize you've left it unlocked.);
//                                               Here--------------^

您还需要删除 和 之后的if分号else

于 2013-05-28T01:01:48.667 回答