SOURCE

$(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);

  
});
console 命令行工具 X clear

                    
>
console