We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d105e5 commit 57a1ac4Copy full SHA for 57a1ac4
1 file changed
1-js/06-advanced-functions/05-global-object/article.md
@@ -51,7 +51,7 @@ window.currentUser = {
51
alert(currentUser.name); // John
52
53
// 或者,如果我们有一个名为 "currentUser" 的局部变量
54
-// 从 window 显示地获取它(这是安全的!)
+// 从 window 显式地获取它(这是安全的!)
55
alert(window.currentUser.name); // John
56
```
57
0 commit comments