$(function(){
function Ponit(x,y){
this.x = x;
this.y = y;
}
Ponit.prototype.r = function(){
return this.x + this.y;
}
Ponit.__proto__ = function(){
alert(111);
}
var p = new Ponit(2,5);
console.log(Ponit === Ponit.prototype.constructor);
});