/* constructor 屬性 constructor 屬性返回全部 JavaScript 變量的構造函數。 */console.log("John".constructor); // 返回函數 String() { [native code] }console.log((3.14).constructor); // 返回函數 Number() { [native code] }console.log(false.constructor); // 返回函數 Boolean() { [native code] }console.log([1,2,3,4].constructor); // 返回函數 Array() { [native code] }console.log({name:'John', age:34}.constructor); // 返回函數 Object() { [native code] }console.log(new Date().constructor); // 返回函數 Date() { [native code] }console.log(function () {}.constructor); // 返回函數 Function(){ [native code] }/* 由於typeof Date, 和typeof Array返回的都是object,因此分辨不出來究竟是Date仍是Array,可使用constructor判斷 *//*你可使用 constructor 屬性來查看是對象是否爲數組 (包含字符串 "Array"): */function isArray(myArray) { return myArray.constructor.toString().indexOf("Array") > -1;}/*你可使用 constructor 屬性來查看是對象是否爲日期 (包含字符串 "Date"): */function isDate(myDate) { return myDate.constructor.toString().indexOf("Date") > -1;}