Merge pull request #1374 from paroche/patch-40

Update article.md
This commit is contained in:
Ilya Kantor 2019-09-24 10:17:42 +03:00 committed by GitHub
commit 8f56846fd5
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.