Skip to content

Commit 7691fd7

Browse files
codeadityamarijnh
authored andcommitted
Changed '\<=' to '<=' in Chapter 1
1 parent fbf985c commit 7691fd7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

01_values.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ codes of the characters one by one.
349349

350350
(((>= operator)))(((<= operator)))(((== operator)))(((!=
351351
operator)))Other similar operators are `>=` (greater than or equal
352-
to), `\<=` (less than or equal to), `==` (equal to), and
352+
to), `<=` (less than or equal to), `==` (equal to), and
353353
`!=` (not equal to).
354354

355355
[source,javascript]
@@ -578,7 +578,7 @@ Such values are created by typing in their name (`true`, `null`) or
578578
value (`13`, `"abc"`). You can combine and transform values with operators. We saw binary
579579
operators for arithmetic (`+`, `-`, `*`, `/`,
580580
and `%`), string concatenation (`+`), comparison (`==`, `!=`,
581-
`===`, `!==`, `<`, `>`, `\<=`, `>=`), and logic (`&&`, `||`), as well
581+
`===`, `!==`, `<`, `>`, `<=`, `>=`), and logic (`&&`, `||`), as well
582582
as several unary operators (`-` to negate a number, `!` to negate
583583
logically, and `typeof` to find a value's type).
584584

0 commit comments

Comments
 (0)