-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (83 loc) · 2.37 KB
/
Copy pathindex.html
File metadata and controls
89 lines (83 loc) · 2.37 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learn ES6 (ESCMAScript 2015)</title>
</head>
<body>
<div class="container">
<h1>
Learn ES6 (ESCMAScript 2015)
</h1>
<p> Exercises </p>
<ol>
<li>
<a href="./arrow-function/index.html">Arrow Function</a>
</li>
<li>
<a href="./let-keyword/index.html">Let Keyword</a>
</li>
<li>
<a href="./default-function_values/index.html">Default Function Values</a>
</li>
<li>
<a href="./const-declaration/index.html">Const Declaration</a>
</li>
<li>
<a href="./shorthand-properties/index.html">Shorthand Properties</a>
</li>
<li>
<a href="./object-enhacements/index.html">Object Enhacements</a>
</li>
<li>
<a href="./spread-opeartor/index.html">Spread Operator</a>
</li>
<li>
<a href="./string-templates/index.html">String Templates</a>
</li>
<li>
<a href="./destructuring-assignment/index.html">Destructuring Assignment</a>
</li>
<li>
<a href="./es6-modules/index.html">ES6 Modules</a>
</li>
<li>
<a href="./array-from/index.html">Array from</a>
</li>
<li>
<a href="./promises/index.html">Promises</a>
</li>
<li>
<a href="./generators/index.html">Generators</a>
</li>
<li>
<a href="./maps-weakmaps/index.html">Maps & Weakmaps</a>
</li>
<li>
<a href="./arguments-keyword/index.html">Arguments Keyword</a>
</li>
</ol>
</div>
</body>
<style>
* {
margin: 0;
padding: 0;
}
.container {
max-width: 1140px;
margin: 0 auto;
text-align: center;
padding: 40px;
}
.container ol {
text-align: left;
}
.container a {
text-decoration: none;
color: black;
}
</style>
</html>