We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4c1f4c commit 7766b91Copy full SHA for 7766b91
1-js/02-first-steps/08-operators/article.md
@@ -52,6 +52,7 @@
52
```js run
53
alert( 5 % 2 ); // 1, остаток от деления 5 на 2
54
alert( 8 % 3 ); // 2, остаток от деления 8 на 3
55
+alert( 8 % 4 ); // 0, остаток от деления 8 на 4
56
```
57
58
### Возведение в степень **
0 commit comments