typeof 與 js資料型別

2022-07-10 12:48:14 字數 491 閱讀 8728

js的資料型別有null、undefied、string、number、boolean、object六個,然後我之前的【誤區】: typeof的返回值和js的資料型別是一樣的。然而並不是 t.t

1. typeof方法返回值的是【字串】:「string」、「number」、「function」、「object」、「boolean」、「undefined」。

2. typeof(null)、typeof({})、typeof()、typeof(window)、typeof(document) 的返回值都是 「object」。

typeof(nan)、typeof(1) 返回值為 "number"

注:測試下總是好的。

JS 資料型別入門與typeof操作符

標準的資料型別劃分 基本型別 number 數字 string 字串 undefined boolean 布林值 null 空物件 空物件與非空物件,最大的區別就是不能進行屬性操作 物件型別 復合型別 object 物件 物件型別中並沒有函式,函式不屬於資料 typeof操作符 是用來檢測變數的資料...

使用typeof檢測資料型別

我們一般使用typeof檢測資料型別 typeof x 與typeof x 的作用是一樣的,返回結果是檢測到的資料型別 number 檢測的值是數值 boolean 檢測的值是布林型的,true或false string 檢測的值是字串 object 檢測的值是物件,陣列或null function...

JS資料型別與型別轉換

1.資料型別 5個基本資料型別 number string boolean undefined null 和乙個引用型別 object 2.判斷型別 typeof 7種 number string boolean undefined object function symbol 3.型別轉換 1 強...