Fix minor grammatical errors

This commit is contained in:
Daniel Schroeder 2019-09-07 13:01:53 -05:00 committed by GitHub
parent a260bae917
commit d813adfb7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -167,9 +167,9 @@ If we used `this.name` instead of `user.name` inside the `alert`, then the code
## "this" is not bound
In JavaScript, "this" keyword behaves unlike most other programming languages. It can be used in any function.
In JavaScript, the "this" keyword behaves unlike most other programming languages. It can be used in any function.
There's no syntax error in the code like that:
There's no syntax error in the following example:
```js
function sayHi() {