我试图在codecademy上完成以下内容:
完成缺少的代码位以构造if / else语句。使条件评估为真。 通过打印出字符串"错误错误错误"完成else语句。到控制台。
我输入了这个:
if ("Jon".length * 2 / (2 + 1) === 2) {
console.log("true");
} else {
console.log("Error Error Error");
}
我迷失并恼怒,请帮助!
但它告诉我:哎呀,再试一次。确保if / else语句的计算结果为true!
答案 0 :(得分:0)
在Codecademy
上,有很多不同的练习,你只能通过它们,这很容易。
最常见的问题: 语法问题 - 一切似乎都有效,但可能是语法问题。
代码格式 - 举个例子:
PASS:
if ("Jon".length * 2 / (2 + 1) === 2) {
console.log("true");
} else {
console.log("Error Error Error");
}
不会通过:
if ("Jon".length * 2 / (2 + 1) === 2) { console.log("true");} else {
console.log("Error Error Error");
}
浏览器问题 - 尝试使用其他浏览器,有时会有所帮助。
PS。我做了近1300次运动,而且我经常强迫这些虫子。