function extend(Child, Parent){
var F = function() { }
F.prototype = Parent.prototype
Child.prototype = new F()
Child.prototype.constructor = Child
Child.superclass = Parent.prototype
}
親クラスを拡張するときに子のプロトタイプ関数が削除されるという問題があります。子関数を保存し、この関数を使用して親を拡張する方法を教えてください。