Skip to content

Commit d0bab50

Browse files
committed
fix: 修复语法错误
1 parent 80049c9 commit d0bab50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

04_Operators/Operators.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ let bool2 = (x != y); // true
1616
let bool3 = (x > y); // false
1717
let bool4 = (x < y); // true
1818
let bool5 = (x >= y); // flase
19-
let bool6 = (x <>= y); // true
19+
let bool6 = (x <= y); // true
2020
let bool7 = (x === y); // flase
2121
let bool8 = (x !== y); // true
2222

0 commit comments

Comments
 (0)