输出中的“未定义”是什么意思?

在节点解释器中:


> 1+3

4

> var name=12

undefined

> console.log(typeof name)

number

undefined

是什么undefined在输出是什么意思?


为什么不1 + 3输出undefined,而其他两个却不输出呢?


一只名叫tom的猫
浏览 187回答 2
2回答

qq_花开花谢_0

因为1 + 3回报4。变量声明不返回任何内容,也不返回任何内容console.log。您看到的值undefined是返回值。但是,变量分配(var hello; hello = "hello")确实返回分配的值(感谢VLAZ指出)。

翻过高山走不出你

您正在使用节点REPL(moreinfo)REPL代表Read-Eval-Print-Loop。顾名思义,它将读取您输入的内容,对其进行评估(运行),将结果打印并重复。打印部分将打印您返回的任何代码。所以它正在做的事情是这样的:console.log(eval({your expression here}))因此,适用于您的案例,我们有:console.log(1+3) // 4console.log(var name=12) // undefined because an attribution doesn't return anythingconsole.log(console.log(typeof name)) // first the inner console.log will print the type of name (number) and then the outer console.log will print undefied (the return of the inner console.log).希望这样更清晰。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript