-
Notifications
You must be signed in to change notification settings - Fork 139
/
index.html
27 lines (27 loc) · 973 Bytes
/
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
<html>
<head>
<meta charset="utf-8" />
<title>ES2015 Demos</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" type="text/css" />
<style type="text/css">
body {
margin: 20px;
}
</style>
</head>
<body>
<h1>ES6 Samples</h1>
<br />
<ul>
<li><a href="samples/arrowFunctions.html">Arrow Functions</a></li>
<li><a href="samples/classes.html">Classes</a></li>
<li><a href="samples/destructuring.html">Destructuring</a></li>
<li><a href="samples/maps.html">Maps</a></li>
<li><a href="samples/parameters.html">Parameters</a></li>
<li><a href="samples/scopeAndLet.html">Scope and Let</a></li>
<li><a href="samples/sets.html">Sets</a></li>
<li><a href="samples/templateStrings.html">Template Strings</a></li>
<li><a href="samples/weakmap-weakset.html">WeakMap/WeakSet</a></li>
</ul>
</body>
</html>