JS 判断null 判断undefined

发布时间:2024年01月19日

判断null:

typeof类型判断:返回是一个object

3个等号判断:===

let a = null
console.log(typeof a === 'object' && a===null) //判断null true
console.log(a === null) //true

判断undefined

console.log(typeof  b=='undefined')

同时判断null?与undefined

判断是否为null?或者为undefined,?且不等于0,?可以用来判断数字型字段是否没有赋值

let a=null
let b
let c=0
console.log(a==null,b==null,c==null) // true, true,false

文章来源:https://blog.csdn.net/LlanyW/article/details/135692497
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。