JavaScriptでの状態変数(state variable)へのアクセスと設定の方法
クラスのプロパティとしての状態変数 クラス内で状態変数を定義し、そのプロパティとしてアクセスおよび設定することができます。以下に例を示します。class MyClass { constructor() { this.zustand = "初期値"; } getZustand() { return this.zustand; } setZustand(newValue) { this.zustand = newValue; } } const myObject = new MyClass(); console.log(myObject.getZustand()); >>More