Skip to content

Commit 33c48a4

Browse files
authored
Merge pull request #3264 from joaquinelio/patch-19
the output is 0
2 parents e912311 + cfc0195 commit 33c48a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ The result of `a % b` is the [remainder](https://en.wikipedia.org/wiki/Remainder
5050
For instance:
5151

5252
```js run
53-
alert( 5 % 2 ); // 1, a remainder of 5 divided by 2
54-
alert( 8 % 3 ); // 2, a remainder of 8 divided by 3
55-
alert( 8 % 4 ); // 0, a remainder of 8 divided by 4
53+
alert( 5 % 2 ); // 1, the remainder of 5 divided by 2
54+
alert( 8 % 3 ); // 2, the remainder of 8 divided by 3
55+
alert( 8 % 4 ); // 0, the remainder of 8 divided by 4
5656
```
5757

5858
### Exponentiation **

0 commit comments

Comments
 (0)