Merge pull request #1987 from pushpend3r/patch-1

Typo mistake
This commit is contained in:
Ilya Kantor 2020-07-18 14:11:41 +03:00 committed by GitHub
commit 80f76533e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ function func() {
func();
```
In this example we can observe the peculiar difference between a "non-existing" and "unitialized" variable.
In this example we can observe the peculiar difference between a "non-existing" and "uninitialized" variable.
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.