Skip to content

Commit 57a1ac4

Browse files
authored
FIX: fix minor typo error
1 parent 0d105e5 commit 57a1ac4

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
@@ -51,7 +51,7 @@ window.currentUser = {
5151
alert(currentUser.name); // John
5252

5353
// 或者,如果我们有一个名为 "currentUser" 的局部变量
54-
// 从 window 显示地获取它(这是安全的!)
54+
// 从 window 显式地获取它(这是安全的!)
5555
alert(window.currentUser.name); // John
5656
```
5757

0 commit comments

Comments
 (0)