-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex4.html
43 lines (36 loc) · 893 Bytes
/
ex4.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Comparison operator & Boolean</h1>
<h2>===</h2>
<h3>1===1</h3>
<script>
// 웹페이지에 write 안의 내용을 출력한다.
document.write(1 === 1);
</script>
<h3>1===2</h3>
<script>
document.write(1 === 2);
</script>
<!-- < 은 < 와 같다 -->
<h3>1<2</h3>
<script>
document.write(1 < 2);
</script>
<h3>1<1</h3>
<script>
document.write(1 < 1);
</script>
<!-- > 은 > 와 같다 -->
<h3>1>2</h3>
<script>
document.write(1 > 2);
</script>
</body>
</html>