2018-10-12 15:37:13 -04:00
|
|
|
---
|
|
|
|
title: Override Inherited Methods
|
|
|
|
---
|
2019-07-24 00:59:27 -07:00
|
|
|
# Override Inherited Methods
|
|
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
## Solutions
|
|
|
|
|
|
|
|
<details><summary>Solution 1 (Click to Show/Hide)</summary>
|
2018-10-12 15:37:13 -04:00
|
|
|
|
|
|
|
```javascript
|
|
|
|
Penguin.prototype.fly = function() {
|
2019-07-24 00:59:27 -07:00
|
|
|
return "Alas, this is a flightless bird.";
|
2018-10-12 15:37:13 -04:00
|
|
|
};
|
|
|
|
```
|
2019-07-24 00:59:27 -07:00
|
|
|
|
|
|
|
</details>
|