构造函数 A
function A() {
}
实例对象 a
var a = new A();
原型对象 prototype 和对象原型 proto
a.__proto__ === A.prototype; // true
constructor 属性
a.__proto__.constructor === A.prototype.constructor; // true;
标签:.__,proto,JS,原型,constructor,prototype
From: https://www.cnblogs.com/HypoPine/p/16980933.html