--- title: Override Inherited Methods localeTitle: Anular métodos heredados --- ## Anular métodos heredados # Solución ```javascript Penguin.prototype.fly = function() { return "Alas, this is a flightless bird."; }; ```