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.
1 parent fbf985c commit 7691fd7Copy full SHA for 7691fd7
01_values.txt
@@ -349,7 +349,7 @@ codes of the characters one by one.
349
350
(((>= operator)))(((<= operator)))(((== operator)))(((!=
351
operator)))Other similar operators are `>=` (greater than or equal
352
-to), `\<=` (less than or equal to), `==` (equal to), and
+to), `<=` (less than or equal to), `==` (equal to), and
353
`!=` (not equal to).
354
355
[source,javascript]
@@ -578,7 +578,7 @@ Such values are created by typing in their name (`true`, `null`) or
578
value (`13`, `"abc"`). You can combine and transform values with operators. We saw binary
579
operators for arithmetic (`+`, `-`, `*`, `/`,
580
and `%`), string concatenation (`+`), comparison (`==`, `!=`,
581
-`===`, `!==`, `<`, `>`, `\<=`, `>=`), and logic (`&&`, `||`), as well
+`===`, `!==`, `<`, `>`, `<=`, `>=`), and logic (`&&`, `||`), as well
582
as several unary operators (`-` to negate a number, `!` to negate
583
logically, and `typeof` to find a value's type).
584
0 commit comments