84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
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