概述
1.判断undefined:
var tmp = undefined;
if (typeof(tmp) == "undefined"){
alert("undefined");
}
说明:typeof 返回的是字符串,有六种可能:"number"、"string"、"boolean"、"object"、"function"、"undefined"
2.判断null:
var tmp = null;
if (!tmp && typeof(tmp)!="undefined" && tmp!=0){
alert("null");
}
3.判断NaN:
var tmp = 0/0;
if(isNaN(tmp)){
alert("NaN");
}
---------------------
作者:YHCBH
来源:CSDN
原文:https://blog.csdn.net/m0_38035006/article/details/77834910
版权声明:本文为博主原创文章,转载请附上博文链接!
转载于:https://www.cnblogs.com/CHWLearningNotes/p/10333173.html
最后
以上就是灵巧小白菜为你收集整理的JS 判断是否为null的全部内容,希望文章能够帮你解决JS 判断是否为null所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复