小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

typeof(undefined)

 竹林湘館 2014-11-19

1、問題:在Javascript中,typeof(undefined) == undefined成立嗎?

答案:不成立,全局函數(shù) typeof()返回值類型為字符串類型,六個(gè)可能值: "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 不與任何值相等,包括其本身。要檢測(cè)值是否為 NaN,請(qǐng)使用 isNaN 函數(shù)。

7、typeof(NaN) == 'number'成立嗎?

答案:成立。NaN是屬于Number類型的數(shù)據(jù)。


終上所述,null是Object類型的數(shù)據(jù),NaN是Number類型的數(shù)據(jù),undefined則是undefined類型的數(shù)據(jù),即沒有定義,找不到該對(duì)象或?qū)ο蟮膶傩院头椒ā?/p>



有關(guān)js判斷undefined類型,使用typeof方法,typeof 返回的是字符串,其中就有一個(gè)是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"。
在使用時(shí)一定要注意。

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

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多