Skip to content

Commit fc4269f

Browse files
[auto] regenerate table of contents
1 parent 5fc8475 commit fc4269f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ However, do note that:
437437

438438
There's no simple explanation for `this`; it is one of the most confusing concepts in JavaScript because it's behavior differs from many other programming languages. The one-liner explanation of the `this` keyword is that it is a dynamic reference to the context in which a function is executed.
439439

440-
A longer explanation follows is that `this` follows these rules:
440+
A longer explanation is that `this` follows these rules:
441441

442442
1. If the `new` keyword is used when calling the function, meaning the function was used as a function constructor, the `this` inside the function is the newly-created object instance.
443443
2. If `this` is used in a `class` `constructor`, the `this` inside the `constructor` is the newly-created object instance.
@@ -4619,7 +4619,7 @@ myFunction();
46194619

46204620
There's no simple explanation for `this`; it is one of the most confusing concepts in JavaScript because it's behavior differs from many other programming languages. The one-liner explanation of the `this` keyword is that it is a dynamic reference to the context in which a function is executed.
46214621

4622-
A longer explanation follows is that `this` follows these rules:
4622+
A longer explanation is that `this` follows these rules:
46234623

46244624
1. If the `new` keyword is used when calling the function, meaning the function was used as a function constructor, the `this` inside the function is the newly-created object instance.
46254625
2. If `this` is used in a `class` `constructor`, the `this` inside the `constructor` is the newly-created object instance.

0 commit comments

Comments
 (0)