Skip to content

Commit 80f7653

Browse files
authored
Merge pull request #1987 from pushpend3r/patch-1
Typo mistake
2 parents 5641b17 + eb49cb9 commit 80f7653

File tree

1 file changed

+1
-1
lines changed
  • 1-js/06-advanced-functions/03-closure/7-let-scope

1 file changed

+1
-1
lines changed

1-js/06-advanced-functions/03-closure/7-let-scope/solution.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function func() {
1515
func();
1616
```
1717

18-
In this example we can observe the peculiar difference between a "non-existing" and "unitialized" variable.
18+
In this example we can observe the peculiar difference between a "non-existing" and "uninitialized" variable.
1919

2020
As you may have read in the article [](info:closure), a variable starts in the "uninitialized" state from the moment when the execution enters a code block (or a function). And it stays uninitalized until the corresponding `let` statement.
2121

0 commit comments

Comments
 (0)