-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (39 loc) · 2.06 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
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<title>ECMAScript 6 Snippets</title>
<meta name="description" content="ECMAScript 6 Snippets is a list of JavaScript code snippets written in ECMAScript 6">
<style>
h1, h3 { text-align: center; }
</style>
</head>
<body>
<h1>ECMAScript 6 Snippets</h1>
<h3>(1) Take a look at the included scripts or (2) open the console.</h3>
<a href="https://github.com/AdirAmsalem/ECMAScript-6-Snippets">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://github-camo.global.ssl.fastly.net/a6677b08c955af8400f44c6298f40e7d19cc5b2d/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677261795f3664366436642e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png">
</a>
<script src="https://traceur-compiler.googlecode.com/git/bin/traceur.js"></script>
<script src="https://traceur-compiler.googlecode.com/git/src/bootstrap.js"></script>
<script>
traceur.options.experimental = true;
</script>
<script src="scripts/01-const.js" type="module"></script>
<script src="scripts/02-let.js" type="module"></script>
<script src="scripts/03-default_parameters.js" type="module"></script>
<script src="scripts/04-rest.js" type="module"></script>
<script src="scripts/05-spread.js" type="module"></script>
<script src="scripts/06-destructuring.js" type="module"></script>
<script src="scripts/07-for_of.js" type="module"></script>
<script src="scripts/08-iterator.js" type="module"></script>
<script src="scripts/09-generator.js" type="module"></script>
<script src="scripts/10-array_comprehensions.js" type="module"></script>
<script src="scripts/11-syntax_refinements.js" type="module"></script>
<script src="scripts/12-class.js" type="module"></script>
<script src="scripts/13-module.js" type="module"></script>
<script src="scripts/14-set.js" type="module"></script>
<script src="scripts/15-map.js" type="module"></script>
<script src="scripts/16-promise.js" type="module"></script>
</body>
</html>