84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
alert(console.log('first time'))
为什么alert会弹出undefined?不应该弹出整个()里面的内容么?
alert
undefined
认证高级PHP讲师
你想多了,console.log是个方法,而这个方法的返回值恰好是undefined或者说“没有返回值”。alert弹出的是console的返回值,也就是undefined了
console.log
console
console.log('first..')返回的就是undefined楼主是想说alert('console.log("first time")')
console.log('first..')
alert('console.log("first time")')
alert会返回括号里的结果.
括号里的是console.log('first time')
console.log('first time')会向控制台打印'first time', 同时返回undefined.
你在浏览器 控制界面输入 console.log("first time") 会返回undefined
你想多了,
console.log
是个方法,而这个方法的返回值恰好是undefined
或者说“没有返回值”。alert
弹出的是console
的返回值,也就是undefined
了console.log('first..')
返回的就是undefined
楼主是想说alert('console.log("first time")')
alert会返回括号里的结果.
括号里的是console.log('first time')
console.log('first time')会向控制台打印'first time', 同时返回undefined.
你在浏览器 控制界面输入 console.log("first time") 会返回undefined