es6的class中函数之间能互相调用吗?

class Foo{

    constructor(){...}

    createThings(){...}

    useThings(){...}

    }

请问一下如果这里的createThings函数需要调用useThings函数该如何调用呢?谢谢


慕码人2483693
浏览 2891回答 2
2回答

紫衣仙女

class Foo{    createThings(){        this.useThings();    }    useThings(){            }}const foo = new Foo();foo.createThings();

慕哥9229398

this.useThings()
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript