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'。期望一个赋值或函数调用,而是看到一个表达式。
我不知道如何解决这个问题
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'。期望一个赋值或函数调用,而是看到一个表达式。
我不知道如何解决这个问题
在您的第一个 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; <-
您在下面的行中缺少一个结束双引号:
console.log("You go to your car and realize you've left it unlocked.);
// Here--------------^
您还需要删除 和 之后的if
分号else
。