File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
1-js/02-first-steps/09-comparison Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ In JavaScript they are written like this:
6
6
7
7
- Greater/less than: <code >a > ; b</code >, <code >a < ; b</code >.
8
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.
9
+ - Equals: ` a == b ` , please note the double equality sign ` == ` means the equality test, while a single one ` a = b ` means an assignment.
10
10
- Not equals. In maths the notation is <code >&ne ; </code >, but in JavaScript it's written as <code >a != b</code >.
11
11
12
12
In this article we'll learn more about different types of comparisons, how JavaScript makes them, including important peculiarities.
You can’t perform that action at this time.
0 commit comments