資料型別可以分為兩大類
第一大類:基本資料型別
第二大類:引用(物件)資料型別
基本資料型別又細分為這5類:
string:任意的字串
number:任意數字
boolean:true,false
undefined:undefined
null:null
引用資料型別又分為這三類:
object:任意物件
function:一種特殊的物件,可以執行呼叫
array:一種特殊的物件(數值下標,內部是有序的)
資料型別介紹完畢後,判斷資料的資料型別也是同等重要,知道是何種資料型別,才可用相應的方法。
判斷資料型別的三大方法:
1、typeof
2、instanceof
3、==
=
1、typeof
可以判斷:undefined、數值、字串、布林值、function
不能判斷:null和object object和array
2、instanceof:
判斷物件的具體型別
3、可以判斷:undefined,null
js的資料型別,以及如何判斷它們是哪種型別
一 js的資料型別 null nudefined number boolean string array object 二 判斷js的資料型別 1 值型別 console.log typeof x undefined console.log typeof 10 number console.log ...
如何判斷資料型別?
1 typeof 2 instanceof 3 constructor 4 object.prototype.tostring.call 5 jquery.type 1 typeof 使用typeof可以判斷基本資料型別,在使用typeof判斷引用資料型別時除了判斷function時返回functi...
JS如何判斷資料型別
首先我們要清楚基本型別與引用型別分別是指什麼。基本型別 undefined null string number boolean symbol es6 引用型別 object array regexp date function 1.typeof typeof的返回值一共有七種,分別為 string...