猿问

问:错误:意外的令牌。预期是构造函数、方法、访问器或属性。ts(1068)

我的代码向我显示此错误“意外的标记。预期是构造函数、方法、访问器或属性。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中


慕码人8056858
浏览 126回答 1
1回答

炎炎设计

你想重写它如下:也许在这里阅读有关课程的信息。这是一个非常好的开始参考:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes您也可以重命名animal为Animal.   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}`;    }    verInfo = () =>{        document.write(this.verInfo);    }   }
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答