Files

14 lines
220 B
Markdown
Raw Normal View History

---
title: Override Inherited Methods
localeTitle: 覆盖继承的方法
---
## 覆盖继承的方法
# 解
```javascript
Penguin.prototype.fly = function() {
return "Alas, this is a flightless bird.";
};
```