console

chrome



console.log() undefined



a=”” ‘’ if(!a){ console.log(“!a”) } VM490:2 !a undefined



chrome 默认会把console.log的返回值打印出来,它没有返回值,所以是undefined



同时也会把log打在控制台, 但是控制台有个过滤框,它会过滤log的内容,如果搜索里有值,且不匹配输出的内容,就会只显示undefined



Category web