在某些应用场景中 可能有需要用到继承 js的原型可以实现类的继承
var Person= function(){ this.name = 'tom' ; this.age = 12 ;} ;Person.prototype.getName = function(){ return this.name ;} ;Person.prototype.getAge = function(){ return this.age;} ;var Tom = function(){ this.name = 'child' ;} ;Tom .prototype = new Person() ;var person= new Person() ;var tom = new Tom ()
先有一个 Person 人 这个类
然后 让 Tom去继承这个类