在节点解释器中:> 1+34> var name=12undefined> console.log(typeof name)numberundefined是什么undefined在输出是什么意思?为什么不1 + 3输出undefined,而其他两个却不输出呢?
2 回答
qq_花开花谢_0
TA贡献1835条经验 获得超7个赞
因为1 + 3
回报4
。变量声明不返回任何内容,也不返回任何内容console.log
。您看到的值undefined
是返回值。但是,变量分配(var hello; hello = "hello"
)确实返回分配的值(感谢VLAZ指出)。
翻过高山走不出你
TA贡献1875条经验 获得超3个赞
您正在使用节点REPL(moreinfo)
REPL代表Read-Eval-Print-Loop。顾名思义,它将读取您输入的内容,对其进行评估(运行),将结果打印并重复。打印部分将打印您返回的任何代码。所以它正在做的事情是这样的:
console.log(eval({your expression here}))
因此,适用于您的案例,我们有:
console.log(1+3) // 4
console.log(var name=12) // undefined because an attribution doesn't return anything
console.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).
希望这样更清晰。
添加回答
举报
0/150
提交
取消