this指向

類的方法內部如果含有 this,它默認指向類的實例。但是,必須非常小心,一旦單獨使用該方法,很可能報錯。 class Logger {  printName(name = 'there') {    this.print(`Hello ${name}`);  }  print(text) {    console.log(text);  } } const logger = new Logger(
相關文章
相關標籤/搜索