Skip to content

Commit a54804b

Browse files
authored
Wording
1 parent 677cd66 commit a54804b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/02-first-steps/14-function-basics/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Variables declared outside of any function, such as the outer `userName` in the
130130
131131
Global variables are visible from any function (unless shadowed by locals).
132132
133-
Usually, a function declares all variables specific to its task, and global variables only store project-level data, so important that it really must be seen from anywhere. Modern code has few or no globals. Most variables reside in their functions.
133+
Usually, a function declares all variables specific to its task. Global variables only store project-level data, so when it's important that these variables are accesible from anywhere. Modern code has few or no globals. Most variables reside in their functions.
134134
```
135135

136136
## Parameters

0 commit comments

Comments
 (0)