원형에 기초한 클래스 계승

1980 단어 계승
 1 var Animal = function() {};

 2 

 3 Animal.prototype.breath = function() {

 4     console.log('breath');

 5 };

 6 

 7 var Dog = function() {};

 8 

 9 //Dog Animal

10 Dog.prototype = new Animal;

11 

12 Dog.prototype.wag = function() {

13     console.log('wag tail');

14 };

15 

16 var dog = new Dog;

17 dog.wag();

18 dog.breath(); // 

 
로그:wag tail 로그:breath

좋은 웹페이지 즐겨찾기