function A() { }
var a = new A();
a.__proto__ === A.prototype; // true
a.__proto__.constructor === A.prototype.constructor; // true;