Skip to content

Commit 37f46bd

Browse files
committed
typo / wording "remnant"
1 parent 3a6d70b commit 37f46bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/06-advanced-functions/04-var/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ sayHi();
7474
alert(phrase); // Error: phrase is not defined
7575
```
7676

77-
As we can see, `var` pierces through `if`, `for` or other code blocks. That's because a long time ago in JavaScript blocks had no Lexical Environments. And `var` is a reminiscence of that.
77+
As we can see, `var` pierces through `if`, `for` or other code blocks. That's because a long time ago in JavaScript blocks had no Lexical Environments. And `var` is a remnant of that.
7878

7979
## "var" are processed at the function start
8080

0 commit comments

Comments
 (0)