gpt4 book ai didi

javascript - "defined"和在 javascript 中定义有什么区别?

转载 作者:行者123 更新时间:2023-12-03 16:45:34 25 4
gpt4 key购买 nike

当用 javascript 写这个时,我看到它是用两种不同的方式写的:

if (typeof x === "undefined") {
// execute code here
}

if (typeof x === undefined) {
// execute code here
}

我的问题是:

"undefined"undefined 有什么区别。一个用引号括起来,另一个没有。

谁能帮我解释一下?

谢谢!

最佳答案

undefined 是一个值,'undefined' 是一个字符串文字。 typeof 运算符返回一个为您提供类型的字符串。所以typeof x返回x类型的字符串名称。

使用 if( x === undefined )if( typeof x === 'undefined' ) 但永远不要使用 if( typeof x === undefined ) 因为 typeof x 将始终返回一个字符串(永远不会等于 undefined)。

关于javascript - "defined"和在 javascript 中定义有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28225571/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com