forked from DevMountain/javascript-3-afternoon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (18 loc) · 773 Bytes
/
index.html
File metadata and controls
21 lines (18 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Javascript and Debugging</title>
</head>
<body>
<p> Edit the nesting.js, destructuring.js, higher-order.js, and classes.js files. </br> Also click the matching link below to see the Spec Runner for each file.
<ul style="list-style:none;">
<li><a href="nesting.html" target="_blank">Nested Objects and Arrays</a></li>
<li><a href="destructuring.html" target="_blank">Destructuring</a></li>
<li><a href="classes.html" target="_blank">Classes</a></li>
<li><a href="higher-order.html" target="_blank">Higher Order Functions</a></li>
<li><a href='forInLoops_Delete.html' target="_blank">For In Loops and Delete</a></li>
</ul>
</p>
</body>
</html>