举个例子
<script>
function Person(name,age){
this.name=name;
this.age=age;
this.getInfo = function(){
console.log(this.name + " is " + this.age + " years old");
};
}
var will = new Person("Will", 28);
alert(will.constructor)
</script>
如上代码,我们要查看will的constructor属性,结果返回
constructor属性的目的就是为了获得实例的构造函数!
在chrome的控制台可以利用proto属性查看