js判断undefined类型

看到同事写的前端代码判断undefind:

js判断undefined类型

 

 

 发现判断不出来,最后查了下资料要用typeof
方法:
if (typeof(reValue) == "undefined") {
   alert("undefined");
}  
typeof 返回的是字符串,有六种可能:"number"、"string"、"boolean"、"object"、"function"、"undefined"

https://www.jb51.net/article/48512.htm

上一篇:如何设置Xiuno BBS URL-Rewrite(伪静态设定)


下一篇:CS框架是什么?