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

Capture and play voice with Asterisk ARI -

c++ - Can not find the "fiostream.h" file -

java - Why database contraints in HSQLDB are only checked during a commit when using transactions in Hibernate? -