1. 程式人生 > >constructor&object的聯絡與區別

constructor&object的聯絡與區別

物件的constructor屬性引用了該物件的建構函式.對於 Object 物件,該指標指向原始的 Object() 函式.如下:

var obj = {};
obj.constructor //? Object() { [native code] }
obj.constructor == Object //true

var arr = [];
arr.constructor //? Array() { [native code] }
arr.constructor == Array //true

function Fun(){
console.log(‘function‘);
}
var fun = new Fun(); //例項化
fun.constructor //? Fun(){console.log(‘function‘)} 【打印出來的引用是Fun函式,說明fun的引用是Fun函式】
Fun.constructor //? Function() { [native code] } 【打印出來的引用是Funcion函式,說明Fun的引用是Function函式】
fun.constructor == Fun //true 【再次證明fun的constructor屬性引用了fun物件的建構函式】
fun.constructor == Fun.constructor //false

constructor常用於判斷未知物件的型別,如下:

function isArray (val){
var isTrue = typeof val == ‘object‘ && val.constructor == Array;
return isTrue?true:false;
}
var arr = isArray([1,2,3,4,5]);
console.log(arr); //true