We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 171d2e7 + 7651ae0 commit 3d47402Copy full SHA for 3d47402
1-js/02-first-steps/09-comparison/article.md
@@ -7,7 +7,7 @@ In JavaScript they are written like this:
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.
10
-- Not equals. In maths the notation is <code>≠</code>, but in JavaScript it's written as <code>a != b</code>.
+- 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.
13
0 commit comments