freeCodeCamp/guide/english/certifications/javascript-algorithms-and-d.../object-oriented-programming/override-inherited-methods/index.md

191 B

title
Override Inherited Methods

Override Inherited Methods

Solution

Penguin.prototype.fly = function() {
    return  "Alas, this is a flightless bird.";
};