-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexamples.html
More file actions
22 lines (22 loc) · 882 Bytes
/
Copy pathexamples.html
File metadata and controls
22 lines (22 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Examples</title>
<style>body{font-family:system-ui,Segoe UI,Roboto,Arial;padding:1rem} ul{line-height:1.6}</style>
</head>
<body>
<h1>Local JS Examples</h1>
<p>Open any example to run it in the browser (each page imports its folder's JS):</p>
<ul>
<li><a href="/array_methods/index.html">array_methods</a></li>
<li><a href="/arrow_functions/index.html">arrow_functions</a></li>
<li><a href="/classes/index.html">classes</a></li>
<li><a href="/destructuring/index.html">destructuring</a></li>
<li><a href="/modules/index.html">modules</a></li>
<li><a href="/spread_ops/index.html">spread_ops</a></li>
<li><a href="/ternary_ops/index.html">ternary_ops</a></li>
<li><a href="/variables/index.html">variables</a></li>
</ul>
</body>
</html>