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 4ea6744 commit 602a042Copy full SHA for 602a042
examples/part2/022
@@ -0,0 +1,12 @@
1
+// 비교 연산자
2
+
3
+console.log(5 == 5);
4
+console.log("5" == 5);
5
+console.log(5 == "5");
6
+console.log(5 != 1);
7
+console.log(5 != "1");
8
+console.log(5 != "5");
9
+console.log(5 === 5);
10
+console.log(5 === "5");
11
+console.log(5 !== 10);
12
+console.log(5 !== "5");
examples/part2/022-1
@@ -0,0 +1,6 @@
+console.log(5 > 3);
+console.log(5 < 3);
+console.log(5 <= 6);
+console.log(5 >= 5);
0 commit comments