如何在js判断undefined和null
时间: 2023-02-26 10:14:47 浏览: 101
js中 关于undefined和null的区别介绍
在 JavaScript 中,可以使用 `typeof` 运算符判断一个值是否为 `undefined`。例如:
```
if (typeof variable === 'undefined') {
console.log('The variable is undefined');
}
```
如果要判断一个值是否为 `null`,可以使用等于运算符:
```
if (variable === null) {
console.log('The variable is null');
}
```
同时判断 `undefined` 和 `null` 的话,可以这样:
```
if (variable == null) {
console.log('The variable is undefined or null');
}
```
请注意,这里使用的是双等号(`==`),因为它会进行类型转换,如果变量是 `undefined` 或 `null`,结果为 `true`。
阅读全文