Skip to content

Commit 3d47402

Browse files
authored
Merge pull request #2729 from fionatagious/patch-1
minor typo
2 parents 171d2e7 + 7651ae0 commit 3d47402

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/02-first-steps/09-comparison/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ In JavaScript they are written like this:
77
- Greater/less than: <code>a &gt; b</code>, <code>a &lt; b</code>.
88
- Greater/less than or equals: <code>a &gt;= b</code>, <code>a &lt;= b</code>.
99
- 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>&ne;</code>, but in JavaScript it's written as <code>a != b</code>.
10+
- Not equals: In maths the notation is <code>&ne;</code>, but in JavaScript it's written as <code>a != b</code>.
1111

1212
In this article we'll learn more about different types of comparisons, how JavaScript makes them, including important peculiarities.
1313

0 commit comments

Comments
 (0)