-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.96 KB
/
index.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
44
45
46
47
<!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" />
<script src="JS/main.js" defer></script>
<title>Loops Assignment - (Steps 199 - 225)</title>
</head>
<body>
<p>Step 199 ("Loop" Assignment):</p>
<button onClick="Call_Loop()">Click here to execute the loop</button>
<p id="Loop"></p>
<hr />
<p>Step 200 ("Length" Property Challenge):</p>
<button onClick="String_Length()">Click HERE to learn about the length property</button>
<p id="Length"></p>
<hr />
<p>Step 203 ("For Loop" Assignment):</p>
<button onClick="for_Loop()">Click here</button>
<p id="List_of_Instruments"></p>
<hr />
<p>Step 207 ("Document.getElementById().innerHTML" Assignment):</p>
<button onClick="array_Function()">Click here</button>
<p id="Array"></p>
<hr />
<p>Step 215 ("Const" Keyword Assignment):</p>
<button onClick="constant_function()">Click here</button>
<p id="Constant"></p>
<hr />
<p>Step 217 ("Let" Keyword Assignment):</p>
<p>Check the console for an example of block scope with the <em>let</em> keyword.</p>
<hr />
<p>Step 220 ("Return Statement" Challenge):</p>
<p>Check the console for an example of the return statement ending a function's execution.</p>
<hr />
<p>Step 223 ("Object" Assignment):</p>
<button onClick="objectAssignment()">Click HERE</button>
<p id="Step223">Click (above) for details of my surroundings:</p>
<hr />
<p>Step 224 ("Break" & "Continue" Challenge):</p>
<button onClick="breakStatement()">Click for a Break</button>
<p id="Break">Click (above) for an example of an infinite loop utilizing the Break method:</p>
<p id="Continue">Click below for an example of a loop utilizing the Continue method:</p>
<button onClick="continueStatement()">Click to Continue</button>
</body>
</html>