js 判断undefined
在JavaScript中,可以使用typeof运算符来判断一个变量是否为undefined。例如:
var x;
if (typeof x === 'undefined') {
console.log('x is undefined');
} else {
console.log('x is defined');
}
另外,还可以使用严格相等运算符(===)来判断一个变量是否为undefined。例如:
var x;
if (x === undefined) {
console.log('x is undefined');
} else {
console.log('x is defined');
}
请注意,如果未声明一个变量,直接使用它将会抛出一个ReferenceError。因此在判断变量是否为undefined之前,应先声明该变量。
原文地址: http://www.cveoy.top/t/topic/iVvG 著作权归作者所有。请勿转载和采集!