class ClassWithStaticProperty { static staticProperty = 'someValue'; } console.log(ClassWithStaticProperty.staticProperty) //'someValue'