「Javascript」static キーワードを使うサンプル
構文
static methodName() { … }
static propertyName [= value];
static キーワードは、クラスに静的メソッドを定義します
サンプルコード
class ClassStaticMethodDemo { static strP= 'A001'; static staticMethod() { return 'static method BB.'; } } console.log(ClassStaticMethodDemo.strP); console.log(ClassStaticMethodDemo.staticMethod());
結果
“A001"
“static method BB."