class Panel {
constructor(game) {
this.game = game; => this.game = new Game();
this.el = document.createElement('li');
this.el.classList.add('pressed');
this.el.addEventListener('click', () => {
this.check();
});
}
上記のコードにように、コンストラクタに仮引数を渡すではなく、その中で Game のインスタンスを作ればプロパティにもアクセスできるですが、なぜそうしないですか?
この回答を見るにはプレミアムプランへの登録が必要です
プレミアムプランとは?