Skip to content

Commit

Permalink
Merge pull request javascript-tutorial#3267 from cerealexperiments/pa…
Browse files Browse the repository at this point in the history
…tch-1

fix typo on Remainder %
  • Loading branch information
iliakan authored Nov 15, 2022
2 parents 8d9ecb7 + d52f318 commit e1bec69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 1-js/02-first-steps/08-operators/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ For instance:
```js run
alert( 5 % 2 ); // 1, a remainder of 5 divided by 2
alert( 8 % 3 ); // 2, a remainder of 8 divided by 3
alert( 8 % 4 ); // 2, 0 remainder of 8 divided by 4
alert( 8 % 4 ); // 0, a remainder of 8 divided by 4
```

### Exponentiation **
Expand Down

0 comments on commit e1bec69

Please sign in to comment.