-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>ES6 Features Playground</title>
</head>
<body>
<h1>
<ol>
<li>Classes</li>
<li>Arrow Functions</li>
<li>Array & Object Destructuring</li>
<li>Array Comprehensions (<a href="http://ariya.ofilabs.com/2013/01/es6-and-array-comprehension.html">http://ariya.ofilabs.com/2013/01/es6-and-array-comprehension.html)</a></li>
<li>Rest Parameters (<a href="http://ariya.ofilabs.com/2013/03/es6-and-rest-parameter.html">http://ariya.ofilabs.com/2013/03/es6-and-rest-parameter.html)</a></li>
<li>Block Scope (<a href="http://ariya.ofilabs.com/2013/05/es6-and-block-scope.html">http://ariya.ofilabs.com/2013/05/es6-and-block-scope.html)</a></li>
<li>Method Definitions (<a href="http://ariya.ofilabs.com/2013/03/es6-and-method-definitions.html">http://ariya.ofilabs.com/2013/03/es6-and-method-definitions.html)</a></li>
<li>Spread Operator (<a href="http://ariya.ofilabs.com/2013/03/es6-and-spread-operator.html">http://ariya.ofilabs.com/2013/03/es6-and-spread-operator.html)</a></li>
<li>Object Literal Property Value Shorthand (<a href="http://ariya.ofilabs.com/2013/02/es6-and-object-literal-property-value-shorthand.html">http://ariya.ofilabs.com/2013/02/es6-and-object-literal-property-value-shorthand.html)</a></li>
<li>Default Argument (<a href="http://ariya.ofilabs.com/2013/02/es6-and-default-argument.html">http://ariya.ofilabs.com/2013/02/es6-and-default-argument.html)</a></li>
<li>Modules</li>
<li>Generators</li>
<li>Maps</li>
<li>Sets</li>
<li>Template String</li>
<li>WeakMap & WeakSet</li>
</ol>
</h1>
</body>
</html>