1、問題:在Javascript中,typeof(undefined) == undefined成立嗎? 答案:不成立,全局函數(shù) typeof()返回值類型為字符串類型,六個可能值: "number", "string", "boolean", "object" ,"function", 和 "undefined"。 只有 typeof(undefined) =="undefined"; 才是成立的。 2、typeof(null) == 'undefined’成立嗎? 答案:不成立,null是Object類型的數(shù)據(jù),故typeof(null) == 'object'成立。 3、typeof([1,2]) == 'array'成立嗎? 答案:不成立,typeof()返回值沒有"array" 類型,同樣也沒有“date”類型。 4、undefined == undefined成立嗎? 答案:成立。 5、null == null成立嗎? 答案:成立。 6、NaN == NaN成立嗎? 答案:不成立。NaN 不與任何值相等,包括其本身。要檢測值是否為 NaN,請使用 isNaN 函數(shù)。 7、typeof(NaN) == 'number'成立嗎? 答案:成立。NaN是屬于Number類型的數(shù)據(jù)。 終上所述,null是Object類型的數(shù)據(jù),NaN是Number類型的數(shù)據(jù),undefined則是undefined類型的數(shù)據(jù),即沒有定義,找不到該對象或?qū)ο蟮膶傩院头椒ā?/p> 有關(guān)js判斷undefined類型,使用typeof方法,typeof 返回的是字符串,其中就有一個是undefined。 js判斷undefined類型
發(fā)現(xiàn)判斷不出來,最后查了下資料要用typeof方法:
typeof
返回字符串,有六種可能:"number"、"string"、"boolean"、"object"、"function"、"undefined"。 |
|