可以使用 typeof
操作符来判断一个变量是否为 undefined 类型
let x;
if (typeof x === "undefined") {
console.log("x is undefined");
} else {
console.log("x is defined");
}
也可以使用严格相等运算符 ===
来判断一个变量是否为 undefined
let x;
if (x === undefined) {
console.log("x is undefined");
} else {
console.log("x is defined");
}
注意:不要使用 == 运算符来判断一个变量是否为 undefined 因为它会在比较之前进行类型转换,可能导致意外的结果。文章来源:https://www.toymoban.com/news/detail-621077.html
如果要判断一个变量是否未定义(既未声明也未赋值),可以使用 window.variable 来进行判断,如果变量未定义,则会抛出一个 ReferenceError 错误文章来源地址https://www.toymoban.com/news/detail-621077.html
let x;
try {
if (window.x === undefined) {
console.log("x is undefined");
}
} catch (error) {
if (error instanceof ReferenceError) {
console.log("x is not defined");
}
}
到了这里,关于JavaScript判断变量是否为undefined的两种写法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!