Type mistake

Used "unitialized" instead of "uninitialized"
This commit is contained in:
Pushpender 2020-07-02 23:18:39 +05:30 committed by GitHub
parent 26bf51af3e
commit eb49cb9345
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.