在devtools控制台上学习我的codeschool exercise时,我很高兴使用console.log打印出他们告诉我的东西。然后我使用console.assert检查一些语句。然后我应该再次使用console.log(?)打印出最后一个字符串。
而不是字符串,我得到未定义。就像日志方法被打破了。显然这里有一个教训,但是什么?
答案 0 :(得分:1)
嗯...这对我有用:
> console.log("A");
A
undefined
> console.assert(1 == 1);
undefined
> console.assert(1 == 2);
Assertion failed:
undefined
> console.log("B");
B
undefined