电竞比分网-中国电竞赛事及体育赛事平台

分享

typeof(undefined)

 竹林湘館 2014-11-19

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類型

1
2
3
4
if (reValue== undefined)
{
alert("undefined");
}

發(fā)現(xiàn)判斷不出來,最后查了下資料要用typeof方法:

1
2
3
4
if (typeof(reValue) == "undefined")
{
alert("undefined");
}

typeof 返回字符串,有六種可能:"number"、"string"、"boolean"、"object"、"function"、"undefined"。
在使用時一定要注意。

    本站是提供個人知識管理的網(wǎng)絡存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多