0

在 devtools 控制台上进行 codeschool练习时,我很高兴使用 console.log 打印出他们告诉我的内容。然后我使用 console.assert 来检查一些语句。然后我应该再次使用console.log(?)打印出最终的字符串。

而不是字符串,我得到undefined。就像日志方法坏了。显然这里有一个教训,但是什么?

4

1 回答 1

1

嗯......这对我有用:

> console.log("A");
A
undefined
> console.assert(1 == 1);
undefined
> console.assert(1 == 2);
Assertion failed:
undefined
> console.log("B");
B
undefined
于 2013-09-24T14:29:33.637 回答