Accessing parent prototype functions from Child
Consider the following code:
function Parent() {}
Parent.prototype.display = function() {
console.log('Parent');
}
function Child() {}
Child.prototype = Object.create(Parent.prototype);
Child.prototype.constructor = Child;
Child.prototype.displ...
blog.adarshkonchady.com1 min read