From 7af784b2d741dcb3395e33050ab8eb25a1779555 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C5=BEiugas=20Pe=C4=8Diulevi=C4=8Dius?= <43075730+peciulevicius@users.noreply.github.com> Date: Mon, 5 Dec 2022 10:11:36 +0200 Subject: [PATCH] JS inequality and strict inequality fixes (#3057) --- .../101-omparison-operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/101-omparison-operators.md b/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/101-omparison-operators.md index 1ef92c0c2..c58704298 100644 --- a/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/101-omparison-operators.md +++ b/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/101-omparison-operators.md @@ -1,6 +1,6 @@ # Comparison Operators -Comparison operators are the operators that compare values and return true or false. The operators include: `>`, `<`, `>=`, `<=`, `==`, `===`, `!==` and `!===` +Comparison operators are the operators that compare values and return true or false. The operators include: `>`, `<`, `>=`, `<=`, `==`, `===`, `!=` and `!==` Free Content W3Schools - JavaScript Tutorials