jquery - javascript extend child function from another parent -


b extend a.call(this), how extend child function (a.method)?

function a() {     this.method = function()     {         // method     }; }  function b() {     a.call(this);     this.method = function()     {         // method         // method b     }; } 


Comments

Popular posts from this blog

c# - Can I intercept a SOAP response in .NET before a content type binding mismatch ProtocolException? -

ruby - Trying to change last to "x"s to 23 -

python - Terminate a gnome-terminal opened with subprocess -