(1)typeof用法
typeof的運算數未定義,返回的就是 "undefined".
運算數為數字 typeof(x) = "number"
字符串 typeof(x) = "string"
布爾值 typeof(x) = "boolean"
對象,數組和null typeof(x) = "object"
函數 typeof(x) = "function"
(2)js判斷是否為空
var exp = null; if (!exp && typeof(exp)!="undefined" && exp!=0 && exp!='') { alert("is not null"); }
以上就是小編為大家帶來的js判斷是否為空和typeof的用法(詳解)全部內容了,希望大家多多支持~