返回所有 JavaScript 变量的构造函数

返回所有 JavaScript 变量的构造函数
    constructor属性
 
    constructor属性返回所有JavaScript变量的构造函数。
 
    实例
 
"John".constructor                 // 返回函数 String()  { [native code] }
 
(3.14).constructor                 // 返回函数 Number()  { [native code] }
 
false.constructor                  // 返回函数 Boolean() { [native code] }
 
[1,2,3,4].constructor              // 返回函数 Array()   { [native code] }
 
{name:'John', age:34}.constructor  // 返回函数 Object()  { [native code] }
 
new Date().constructor             // 返回函数 Date()    { [native code] }
 
function () {}.constructor         // 返回函数 Function(){ [native code] }
 
    你可以使用constructor属性来查看对象是否为数组(包含字符串"Array"):
 
    实例
 
function isArray(myArray) {
 
    return myArray.constructor.toString().indexOf("Array") > -1;
 
}
 
    你可以使用constructor属性来查看对象是否为日期(包含字符串"Date"):
 
    实例
 
function isDate(myDate) {
 
    return myDate.constructor.toString().indexOf("Date") > -1;
 
}

推荐阅读