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