From 35aa3dc7c019cd382dbd58505d5ab5dae5e7aba4 Mon Sep 17 00:00:00 2001 From: skieurfoufou <92753283+skieurfoufou@users.noreply.github.com> Date: Mon, 12 Sep 2022 14:04:03 +0300 Subject: [PATCH] Add logical operators docs (#1742) * Update 104-logical-operators.md * Update content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/104-logical-operators.md Co-authored-by: Kamran Ahmed --- .../104-logical-operators.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/104-logical-operators.md b/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/104-logical-operators.md index 9e376cd3e..1c01ee012 100644 --- a/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/104-logical-operators.md +++ b/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/104-logical-operators.md @@ -1 +1,6 @@ -# Logical operators \ No newline at end of file +# Logical Operators + +There are four logical operators in JavaScript: `||` (OR), `&&` (AND), `!` (NOT), `??` (Nullish Coalescing). + +Logical Operators - MDN +Logical Operators - MDN