typeofcode
JS數據類型有7中:字符串
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"