JavaScript Class Access Статическое свойство

class ClassWithStaticProperty {
	static staticProperty = 'someValue';
}

console.log(ClassWithStaticProperty.staticProperty) //'someValue'
Spen