1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 12:10:22 +02:00

Fix arithmetic operators typo (#2565)

This commit is contained in:
Vladyslav Nikiforov
2022-10-17 06:37:34 +03:00
committed by GitHub
parent 7c8be79a1b
commit 97fe8030de

View File

@@ -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>