We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1f0fcb7 + abfa6dc commit c3a11c8Copy full SHA for c3a11c8
1-js/02-first-steps/09-comparison/article.md
@@ -6,7 +6,7 @@ In JavaScript they are written like this:
6
7
- Greater/less than: <code>a > b</code>, <code>a < b</code>.
8
- Greater/less than or equals: <code>a >= b</code>, <code>a <= b</code>.
9
-- Equals: `a == b`, please note the double equality sign `=` means the equality test, while a single one `a = b` means an assignment.
+- Equals: `a == b`, please note the double equality sign `==` means the equality test, while a single one `a = b` means an assignment.
10
- Not equals. In maths the notation is <code>≠</code>, but in JavaScript it's written as <code>a != b</code>.
11
12
In this article we'll learn more about different types of comparisons, how JavaScript makes them, including important peculiarities.
0 commit comments