码迷,mamicode.com
首页 > 其他好文 > 详细

constructor object的区别

时间:2018-12-15 21:41:13      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:证明   tor   函数   nbsp   判断   span   ret   sar   fun   

对象的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

 

 

参考自https://www.cnblogs.com/xcee/

constructor object的区别

标签:证明   tor   函数   nbsp   判断   span   ret   sar   fun   

原文地址:https://www.cnblogs.com/LLLL-MM/p/10124713.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!