1
2
function Derived() {
3
Base.apply(this)
4
}
5
6
Derived.prototype = new Base()
7
8
Derived.prototype.act = function() {
9
return "Derived-Act-"+form + "/" + this.shared()
10