You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 1-js/09-classes/03-static-properties-methods/article.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -90,7 +90,7 @@ class Article {
90
90
91
91
let article =Article.createTodays();
92
92
93
-
alert( article.title ); //Todays digest
93
+
alert( article.title ); //Today's digest
94
94
```
95
95
96
96
Now every time we need to create a today's digest, we can call `Article.createTodays()`. Once again, that's not a method of an article, but a method of the whole class.
0 commit comments