JS中判断undefined和null类型详解编程语言

JavaScript中有两种特殊数据类型:undefinednull

JS判断undefined

以下是不正确的写法:

if(exp == undefined){ 
     alert("undefined"); 
}

正确方法:

if(typeof(exp) == 'undefined'){ 
     alert("undefined"); 
}

typeof 返回的是字符串,有六种类型:
“number”、”string”、”boolean”、”object”、”function”、”undefined”

JS判断null

以下分别都是不正确的写法:

var exp = null; 
if(exp == null){ 
    alert("is null"); 
}

exp为undefined时,也会得到与null相同的结果

var exp = null; 
if(!exp){ 
    alert("is null"); 
}

exp为undefined或者数字零时,也会得到与null相同的结果

var exp = null; 
if(typeof(exp) == "undefined"){ 
    alert("is null"); 
}

exp为null时,typeof返回object

以下是正确的判断null方法

var exp = null; 
if (!exp && typeof(exp)!="undefined" && exp!=0){ 
    alert("is null"); 
}

作者:blog.ytso.com

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/14530.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论