freeCodeCamp/guide/chinese/certifications/javascript-algorithms-and-data-structures/object-oriented-programming/override-inherited-methods/index.md
2018-10-16 21:32:40 +05:30

220 B

title localeTitle
Override Inherited Methods 覆盖继承的方法

覆盖继承的方法

Penguin.prototype.fly = function() { 
    return  "Alas, this is a flightless bird."; 
 };