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

12 lines
191 B
Markdown
Raw Normal View History

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