14 lines
234 B
Markdown
14 lines
234 B
Markdown
![]() |
---
|
||
|
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.";
|
||
|
};
|
||
|
|
||
|
```
|