Classe JavaScript Accès à la propriété statique

class ClassWithStaticProperty {
	static staticProperty = 'someValue';
}

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