12 lines
191 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Override Inherited Methods
---
## Override Inherited Methods
# Solution
```javascript
Penguin.prototype.fly = function() {
return "Alas, this is a flightless bird.";
};
```