Fix arithmetic operators typo (#2565)

pull/2568/head
Vladyslav Nikiforov 2 years ago committed by GitHub
parent 7c8be79a1b
commit 97fe8030de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/102-arithmetic-operators.md

@ -10,7 +10,7 @@ Arithmetic operators in JavaScript are as follows:
- `/` (Division) - `/` (Division)
- `%` (Modulus i.e. Remainder) - `%` (Modulus i.e. Remainder)
- `++` (Increment) - `++` (Increment)
- `++` (Decrement) - `--` (Decrement)
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators#arithmetic_operators'>Arithmetic Operators - MDN</BadgeLink> <BadgeLink colorScheme='yellow' badgeText='Read' href='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators#arithmetic_operators'>Arithmetic Operators - MDN</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://javascript.info/operators#maths'>Arithmetic Operators - JavaScript.info</BadgeLink> <BadgeLink colorScheme='yellow' badgeText='Read' href='https://javascript.info/operators#maths'>Arithmetic Operators - JavaScript.info</BadgeLink>

Loading…
Cancel
Save