es6 静态方法和类区分

class XX{
     static hello(){

    }
    hi(){
    }
}

let x = new XX();
x.hi()
XX.hello()

 

posted @ 2022-02-11 16:49  零碎沉默  阅读(25)  评论(0编辑  收藏  举报