function Super(){alert("Hello!")} function F(){} F.prototype=Object.create(Super.prototype) F.prototype.constructor=F o=new F o.__proto__.__proto__.constructor()