forked from DevMountain/javascript-3-afternoon-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (27 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Javascript and Debugging</title>
</head>
<body>
<h3>Spec Runners:</h3>
<ul>
<li><a href="nesting.html">Nested Objects and Arrays - ./nesting.html</a></li>
<li><a href="destructuring.html">Destructuring - ./destructuring.html</a></li>
<li><a href="spread.html">Spread Operator - ./spread.html</a></li>
<li><a href="higher-order.html">Higher Order Functions - ./higher-order.html</a></li>
<li><a href="for-in-delete.html">For In Loops and Delete - ./for-in-delete.html</a></li>
</ul>
<p>To use the debugger, right click this page and press Inspect. You can also use the hotkey combination of L-CTRL ( Mac: L-Command ) + L-SHIFT + C</p>
<p>Now that the debugger is visible on your screen, look for the <b>Sources</b> tab and open it.</p>
<p>Refresh the page while you have the debugger open and the <b>Sources</b> tab active.</p>
<p>Select the JavaScript file you would like to debug.</p>
<p>For more information, checkout: <a href="https://developers.google.com/web/tools/chrome-devtools/?utm_source=dcc&utm_medium=redirect&utm_campaign=2016q3">Chrome DevTools</a></p>
<script src="classes.js"></script>
<script src="destructuring.js"></script>
<script src="for-in-delete.js"></script>
<script src="higher-order.js"></script>
<script src="nesting.js"></script>
</body>
</html>