From d4342a5ce8cd544473ae64cfbfb13489a79928f1 Mon Sep 17 00:00:00 2001 From: skieurfoufou <92753283+skieurfoufou@users.noreply.github.com> Date: Mon, 12 Sep 2022 13:56:25 +0300 Subject: [PATCH] Add unary operators resources (#1743) * Update 109-unary-operators.md * Update content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/109-unary-operators.md Co-authored-by: Kamran Ahmed --- .../109-unary-operators.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/109-unary-operators.md b/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/109-unary-operators.md index ba2721ee3..59b52bf5c 100644 --- a/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/109-unary-operators.md +++ b/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/109-unary-operators.md @@ -1 +1,6 @@ -# Unary operators \ No newline at end of file +# Unary Operators + +JavaScript Unary Operators are the special operators that consider a single operand and perform all the types of operations on that single operand. These operators include unary plus, unary minus, prefix increments, postfix increments, prefix decrements, and postfix decrements. + +Unary Operators in JavaScript +Unary Operators - MDN