js构造函数中的五种继承方法
两个对象的构造函数,动物类
function Animal(){
this.species = "动物";
}
function Cat(name,color){
this.name = name;
this.color = color;
}
func