typeof傳回的資料型別有6種,分別為:1、object,物件型別;2、undefined,未定義型別;3、string,字串型別;4、number,數字型別;5、 boolean,布林類型;6、function,函數類型。
typeof 共回傳6種資料格式:
1、object --或null(這個是js歷史遺留問題,將null當作object型別處理)
##2、undefined --未定義的變數或值##o 或值
4、number --數位類型的變數或數值
5、boolean --函數類型的變數或值
範例:#Undefinedvar a1;
typeof(a1);
##number
var num1=12; typeof(num1);
執行結果:
string
var num2="12"; typeof(num2);
執行結果:
boolean
var flag=true; typeof(flag);
執行結果:
object
var str=new String(); typeof(str); var a=null; typeof(a);
執行結果:
############## ###function###var fn = function(){}; typeof(fn); typeof(class c{});
以上是typeof傳回的資料型別有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!