字符串(String)
数 字(Number)
函 数(Function)
typeof "Mirror" ; // 返回 string
typeof 3.14159265 ; // 返回 Number
typeof NaN ; // 返回 Number
typeof false ; // 返回 Boolean
typeof [1,2,3] ; // 返回 Object(数组一种特殊的对象)
typeof {name:"Mirror"} ;// 返回 object
typeof new Date() ; // 返回 Object
typeof function(){} ; // 返回 Function
typeof myCar ; // 返回 undefined(没有赋值的变量不是 0 而是 undefined)
typeof null ; // 返回 Object
"Mirror".constructor ; // 返回 function String() {}
(3.14).constructor ; // 返回 function Number() {}
false.constructor ; // 返回 function Boolean() {}
[1,2,3,4].constructor ; // 返回 function Array() {}
{name:"Mirror"}.constructor ; // 返回 function Object() {}
new Date().constructor ; // 返回 function Date() {}
function() {}.constructor ; // 返回 function Function() {}
原文:https://www.cnblogs.com/wangyuyang1016/p/11069590.html