Update article.md

Add "the" before "'this' keyword".
This commit is contained in:
paroche 2019-09-23 20:44:13 -06:00 committed by GitHub
parent 8881589280
commit 9fd644cc83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -98,7 +98,7 @@ It's common that an object method needs to access the information stored in the
For instance, the code inside `user.sayHi()` may need the name of the `user`.
**To access the object, a method can use `this` keyword.**
**To access the object, a method can use the `this` keyword.**
The value of `this` is the object "before dot", the one used to call the method.