From 012fafc2de94a4ee68ec56381822922cbe48fbd8 Mon Sep 17 00:00:00 2001
From: Muhammad Moinuddin
<54661456+Muhammed-Moinuddin@users.noreply.github.com>
Date: Wed, 12 Oct 2022 18:54:29 +0500
Subject: [PATCH] Edited Javascript Roadmaps Content (#2142)
* Edited Javascript Roadmaps Content
Added some content in arithmetic operators & arrow functions. Amended one file name as well.
* Reverted the File name
Just reverted the name of the file as it was breaking the build.
---
.../102-arithmetic-operators.md | 7 +++++--
.../109-javascript-functions/102-arrow-functions.md | 1 +
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/102-arithmetic-operators.md b/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/102-arithmetic-operators.md
index 5df5323e3..a110b579b 100644
--- a/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/102-arithmetic-operators.md
+++ b/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/102-arithmetic-operators.md
@@ -6,9 +6,12 @@ Arithmetic operators in JavaScript are as follows:
- `+` (Addition)
- `-` (Subtraction)
- `*` (Multiplication)
-- `/` (Division)
-- `%` (Remainder)
- `**` (Exponentiation)
+- `/` (Division)
+- `%` (Modulus i.e. Remainder)
+- `++` (Increment)
+- `++` (Decrement)
Arithmetic Operators - MDN
Arithmetic Operators - JavaScript.info
+JavaScript Arithmetic Operators
diff --git a/content/roadmaps/106-javascript/content/109-javascript-functions/102-arrow-functions.md b/content/roadmaps/106-javascript/content/109-javascript-functions/102-arrow-functions.md
index 303e30217..5364aade3 100644
--- a/content/roadmaps/106-javascript/content/109-javascript-functions/102-arrow-functions.md
+++ b/content/roadmaps/106-javascript/content/109-javascript-functions/102-arrow-functions.md
@@ -3,3 +3,4 @@
Arrow Function is a new way of creating functions with the '=>' operator with a shorter syntax.
Arrow function expressions
+JavaScript Arrow Function