js筆記 ---- ECMAscript中原始類型與引用類型 注意的地方

5種原始類型(primitive type ) :number string boolean undefined null   存儲在棧中對象

其中:除開 string類型,其餘4中類型的大小都是不變的。string

  使用 typeof 的返回值it

  undefined   對應Undefined的數據類型變量

  number   Numberobject

  string          String 數據類型

  boolean        Boollean引用

  object        引用類型或者是null類型im

 當判斷一個變量是不是什麼具體對象值的時候,使用typeof 是沒法具體確認的,由於  typeof null  = 'object ', 其餘類型沒法具體判斷數據

並且  : alert(null == undefined) 返回爲true; 這是由於 undefined 其實是從null上面派生下來的。運算符

 

使用instanceof 運算符能夠準確判斷是什麼引用類型的對象。

相關文章
相關標籤/搜索