diff --git a/1-js/09-classes/03-static-properties-methods/article.md b/1-js/09-classes/03-static-properties-methods/article.md index 4b493a5e8b..6c7bf140bc 100644 --- a/1-js/09-classes/03-static-properties-methods/article.md +++ b/1-js/09-classes/03-static-properties-methods/article.md @@ -223,6 +223,8 @@ For example, a method for comparison `Article.compare(article1, article2)` or a They are labeled by the word `static` in class declaration. +"this" in a static method declaration points to the class constructor itself, not to an instance object of the class as in regular method declarations. + Static properties are used when we'd like to store class-level data, also not bound to an instance. The syntax is: