我的代码向我显示此错误“意外的标记。预期是构造函数、方法、访问器或属性。ts(1068)
class animal {
constructor(especie,edad,color){
this.especie = especie;
this.edad = edad;
this.color = color;
this.info = `Soy un ${this.especie}, tengo ${this.edad}
y soy de color ${this.color}`;
}
this.verInfo = ()=>{
document.write(this.verInfo);
}
}
错误显示在这个.verInfo中
炎炎设计
相关分类