Skip to content

Commit 7ce5a24

Browse files
authored
Merge pull request #134 from jadentom/patch-1
Operators article grammar fix
2 parents ddf05ba + 0f41bec commit 7ce5a24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1-js/02-first-steps/07-operators/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Funny code, isn't it? We should understand how it works, because sometimes we ca
201201

202202
## Remainder %
203203

204-
The remainder operator `%` despite it's look does not have a relation to percents.
204+
The remainder operator `%` despite its look does not have a relation to percents.
205205

206206
The result of `a % b` is the remainder of the integer division of `a` by `b`.
207207

@@ -415,7 +415,7 @@ let a = (1+2, 3+4);
415415
alert( a ); // 7 (the result of 3+4)
416416
```
417417
418-
Here, the first expression `1+2` is evaluated, and it's result is thrown away, then `3+4` is evaluated and returned as the result.
418+
Here, the first expression `1+2` is evaluated, and its result is thrown away, then `3+4` is evaluated and returned as the result.
419419
420420
```smart header="Comma has a very low precedence"
421421
Please note that the comma operator has very low precedence, lower than `=`, so parentheses are important in the example above.

0 commit comments

Comments
 (0)