Skip to content

Commit 00f6705

Browse files
committed
conditional statements
1 parent 63e146c commit 00f6705

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

04-Conditional-Statements/index.html

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Conditional Statement</title>
8+
</head>
9+
<body>
10+
<h1>Conditional Statement</h1>
11+
<p>Introduces conditional statements used in JavaScript.</p>
12+
<ul>
13+
<li>if</li>
14+
<li>if else</li>
15+
<li>switch</li>
16+
</ul>
17+
18+
<script src="conditionals.js"></script>
19+
</body>
20+
</html>
21+
22+

0 commit comments

Comments
 (0)