JavaScriptの静的プロパティを学んでいるのですが、
いまいち使いどころが分かりません。
クラス文の中でletやconstで変数宣言をするとエラーが出ますので、
「クラス文の中で変数を使いたい時に静的プロパティを使用する。」と考えたのですが間違っているでしょうか?
js
1class Test { 2 constructor() {} 3 4 static name = "太郎"; 5 6 // constで宣言するとエラーが出る 7 // const name2 = '次郎'; 8 9 hello() { 10 console.log("hello" + this.constructor.name); 11 } 12} 13 14const insta = new Test(); 15 16insta.hello();
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。