Skip to content

Commit 37a0437

Browse files
committed
incorporates PR feedback
1 parent fb360a0 commit 37a0437

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

day_07.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Why this intro? because there are tons of articles regarding `this` but everythi
2929

3030
### Resolving `this`
3131

32-
Let's take a look a the following chapters of **You Don't Know JS: this & Object Prototypes - 1st Edition**
32+
Let's take a look at the following chapters of **You Don't Know JS: this & Object Prototypes - 1st Edition**
3333

3434
- [Chapter 1: this Or That?](https://github.com/getify/You-Dont-Know-JS/blob/1st-ed/this%20%26%20object%20prototypes/ch1.md)
3535
- [Chapter 2: this All Makes Sense Now!](https://github.com/getify/You-Dont-Know-JS/blob/1st-ed/this%20%26%20object%20prototypes/ch2.md)
@@ -47,13 +47,13 @@ In the other hand, MDN describes `this` on the Operators section
4747

4848
### Explicitly binding `this` through prototype methods
4949

50-
Now we've learned that `this` has specific rules and is resolved at run-time, and we saw that the `function` prototype has 3 methods to explicitly define where to point when `this` needs to be resolved during it's execution.
50+
Now we've learned that `this` has specific rules and it's resolved at run-time, and we saw that the `function` prototype has 3 methods to explicitly define where to point when `this` needs to be resolved during it's execution.
5151

5252
- [Function.prototype.bind()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind)
5353
- [Function.prototype.apply()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/apply)
5454
- [Function.prototype.call()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/call)
5555

56-
Now, there's a catch!!! it seems that depending on a thing called **mode** that depending on of it's [strict](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode) or [non-strict](https://developer.mozilla.org/en-US/docs/Glossary/Sloppy_mode) (a.k.a. Sloppy) it'll alter the semantics and behavior of many things including `this`.
56+
Now, there's a catch!!! it seems that depending on a thing called **mode**, that depending on it's [strictness](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode) or [non-strictness](https://developer.mozilla.org/en-US/docs/Glossary/Sloppy_mode) (a.k.a. Sloppy) it'll alter the semantics and behavior of many things including `this`.
5757

5858
---
5959

0 commit comments

Comments
 (0)