- 只要创建给一个函数就会随之创建一个 prototype 属性(指向原型对象)
function A (){
console.log(1);
}
A.prototype = {constructor:f} // 原型对象里面有一个名字为 constructor 的属性
_proto_是 实例对象 与 对象之间的链接纽带
let a= new A();
a.__proto__.constructor === A // true
a.__proto__ === A.prototype // true