檢測數據類型

typeofcode

JS數據類型有7中:字符串

  1. 基本數據類型: String,Number,Boolean, Null, Undefined,Symbol
  2. 引用數據類型: Object({},[], function)

typeof返回值有7種,且值都是字符串類型
分別是:undefined,string,number,boolean,object,function,Symbolstring

var a; 
typeof a;                     // "undefined" 

a = "hello world"; 
typeof a;                     // "string" 

a=42; 
typeof a;                     // "number" 

a = true; 
typeof a;                     // "boolean" 


a = null; 
typeof a;                     // "object" (注意)

a = undefined; 
typeof a;                     // "undefined" 

a={b:"c"}; 
typeof a;                     // "object"

function test(){
    return 1;
}
typeof test                    // "function"
相關文章
相關標籤/搜索