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

234 B

title localeTitle
Override Inherited Methods Anular métodos heredados

Anular métodos heredados

Solución

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