We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d9ecb7 commit d52f318Copy full SHA for d52f318
1-js/02-first-steps/08-operators/article.md
@@ -52,7 +52,7 @@ For instance:
52
```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 ); // 2, 0 remainder of 8 divided by 4
+alert( 8 % 4 ); // 0, a remainder of 8 divided by 4
56
```
57
58
### Exponentiation **
0 commit comments