So I have cerated a class
function myClass()
{
}
With the method
myClass.prototype.theMethod=function()
{
}
Which is fine but I have a circumstance where I need to use this class but add extra commands to method instead of just overwriting the whole thing, if that is possible?