function F(){ this.a = "aaa"; alert(111); } F.prototype = { constructor:F, } var f = new F.prototype.constructor(); alert(f.a);//aaa F.prototype.constructor();//111 alert(F === F.prototype.constructor);//true