📜  在类 javascript 代码示例中调用方法

📅  最后修改于: 2022-03-11 15:01:25.683000             🧑  作者: Mango

代码示例1
class MyClass{
  constructor(config) {
    this.config = config;
  }

  async method1(paramA) {
    // do_stuff...
  }

  method2(paramB) {
     this.method1();
  }
}