Skip to content

Commit 55f7708

Browse files
committed
create starter and finished files for video 54
1 parent 974e467 commit 55f7708

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8+
<title>For Loops</title>
9+
</head>
10+
11+
<body>
12+
<script>
13+
const numbers = [2, 34, 3, 23, 42, 3, 1, 65, 364, 5, 645, 6];
14+
15+
const name = 'Wes Bos';
16+
17+
// For
18+
19+
// For of
20+
21+
// For in
22+
23+
// While Loop
24+
</script>
25+
</body>
26+
27+
</html>

0 commit comments

Comments
 (0)