JavaScript Undefined,Null類型和NaN值區別

來源:互聯網
上載者:User

一 Undefined 類型
只有一種值 undefined
以下三種情況typeof 傳回型別為undefined
1. 當變數未初始化時
2. 變數未定義時
3. 函數無明確傳回值時(函數沒有傳回值時返回的都是undefined)
undefined 並不等同於未定義的值
typeof 並不真正區分是否是未定義
看以下範例程式碼:
var oTemp;
alert(typeof oTemp); // outputs "undefined"
alert(typeof oTemp2);// outputs "undefined"
alert(oTemp2 == undefined ); // 錯誤 oTemp2 未定義 不能使用除了typeof之外的不能用來oTemp2其他的運算
當變數
二 Null 類型
只有一個null,undefined 是由null派生處理的,因此undefined == null
undefined 是聲明了但是沒有初始化的該變數,
null表示尚未存在的對象
三 NaN 值
是一個特殊值,表示非數(Not a Number)
類型轉換失敗就會返回NaN
e.g. 要把一個單詞blue轉換為數值就會失敗因為沒有等價的數值
NaN 不等於自己
即 NaN == NaN 是 false
判斷NaN 使用 isNaN();
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.