Skip to content

Commit 3ce1620

Browse files
authored
Update article.md
1 parent 0ed7d55 commit 3ce1620

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • 1-js/06-advanced-functions/05-global-object

1-js/06-advanced-functions/05-global-object/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ window.currentUser = {
4848
alert(currentUser.name); // John
4949

5050
// или, если у нас есть локальная переменная с именем "value",
51-
// полумим её из window явно (безопасно!)
51+
// получим её из window явно (безопасно!)
5252
alert(window.currentUser.name); // John
5353
```
5454

0 commit comments

Comments
 (0)