我一直得到意外的令牌)

时间:2015-05-29 16:51:51

标签: javascript

我正在做编码学院,而且当我收到那个烦人的小信息时,我通常会这样做,

("Jon".length * 2 / (2+1) === )
{
console.log("The answer makes sense!");
} 
else 
{
console.log("Error! Error! Error!");
}

1 个答案:

答案 0 :(得分:0)

这一行有两个问题

("Jon".length * 2 / (2+1) === )

首先,你需要在行的开头有某种条件,比如if

if("Jon".length * 2 / (2+1) === )

其次,您需要在===之后填写方程式的右侧与您的目标进行比较,如数字

if("Jon".length * 2 / (2+1) === 1)