forked from michaelkoek/es6-training
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (23 loc) · 882 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
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>ES6 In-depth</h1>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<!--<script src="lessons/01_vars_conditions.js"></script>-->
<!--<script src="lessons/02_arrowfunctions.js"></script>-->
<!--<script src="lessons/03_spread-rest.js"></script>-->
<!--<script src="lessons/04_destructering.js"></script>-->
<!--<script src="lessons/05_class.js"></script>-->
<!--<script type="module" src="lessons/app.js"></script>-->
<!--EXCERCISE-->
<!--<script src="exercise/01_vars_conditions.js"></script>-->
<!--<script src="exercise/02_arrowfunctions.js"></script>-->
<!--<script src="exercise/03_spread-rest.js"></script>-->
<!--<script src="exercise/04_destructering.js"></script>-->
<!--<script src="exercise/05_class.js"></script>-->
</body>
</html>