I have the following Meta-Code
var Parent = function(){}
Parent.prototype.doSomething = function(){
console.log("As a parent I did like a parent");
}
var Child = function(){}
Child.prototype = new Parent();
Child.prototype.doSomething = function(){
console.log("As a child I did like a child");
//This is where I am not sure what to put
}
What I would like it 2 lines
As a child I did like a child
As a parent I did like a parent
Of course the first one is simple but I am not sure how/if I can call a parent function once it has been overridden.