js基礎資料型別 (Elementary Data Type)及判斷方法

來源:互聯網
上載者:User

標籤:alt   參考型別   返回   images   instance   keyword   span   簡單   fine   

判斷對象是否為空白? 

Js代碼  
  1. if (typeof myObj == "undefined") {  
  2.     var myObj = { };  
  3.   }  
  4. //這是目前使用最廣泛的判斷javascript對象是否存在的方法。  



一、基礎資料型別 (Elementary Data Type) 
js一共有六種資料類型:五種單一資料型別和一種複雜資料類型: 
五種單一資料型別包括:String、Number、Boolean、undefined、Null 
一種複雜資料類型:obeject 

自己總結: 
1,幾種false 
undefined,null,Null 字元串,0都等於false,都可以通過!來取反。 


二、使用typeof來檢測資料類型 
可以使用typeof來檢測資料類型: 
“undefined”-->這個變數是未定義的(為初始化的變數和未聲明的變數的typeof操作都返回undefined) 
”boolean“-->這個值是布爾值 
”string“ -->這個值是字串 
”number“-->這個值是數字 
”object“-->這個值為null或者obejct 
”function“-->這個值是函數 

Js代碼  
  1. //判斷一個資料是否定義可以使用  
  2. if(typeof(XX) == "undefined"){  
  3. }  




三、分別判斷已知類型資料內部結構 
1,判斷一個對象是否為空白 

Js代碼  
  1. //data  
  2. //首先用typeof(data),列印object  
  3. typeof(data);  
  4. console.log(typeof(data));  
  5. //然後用.hasOwnProperty(‘remain‘),判斷對象data有沒有屬性remain。  
  6. data.hasOwnProperty(‘remain‘);  
  7. console.log(data.hasOwnProperty(‘remain‘));//true或false  



編程技巧: 
1.如果初衷是想讓一個變數儲存一個物件變數,那麼應該在聲明變數的時候顯示的賦值為null,這樣有助於後面進一步區分null和undefined。由於alert(null==undefined) 為true的緣故。 
2.檢測物件類型的資料時使用instanceof判斷某個參考型別的變數是否是某個類型的對象。這個運算子如果範圍基本類型的資料會返回false; 


2,undefined 

Js代碼  
    1. //如果一個變數還沒有定義,可以用以下方式判斷:  
    2. if( data == undefined){  
    3. }  

js基礎資料型別 (Elementary Data Type)及判斷方法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.