forked from mvolkmann/mvolkmann.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathES6.html
More file actions
70 lines (56 loc) · 4.06 KB
/
Copy pathES6.html
File metadata and controls
70 lines (56 loc) · 4.06 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
<!DOCTYPE html>
<html>
<head>
<title>ECMAScript 6 and Beyond</title>
<link rel="stylesheet" type="text/css" href="../common.css"/>
</head>
<body>
<h2>ECMAScript 6 and Beyond</h2>
<p>
This is a collection of my favorite resources for learning about
features added to JavaScript in ES6 and beyond.
</p>
<h3>Compatibility Charts</h3>
<a href="http://kangax.github.io/compat-table/es6/">ES6</a> by Juriy Zaytsev (kangax)<br>
<a href="http://kangax.github.io/compat-table/es7/">ES7</a> by Juriy Zaytsev (kangax)
<h3>General</h3>
<a href="ES6.pdf">My comprehensive ES6 slides</a> by R. Mark Volkmann<br>
<a href="http://www.2ality.com/2014/08/es6-today.html">Using ECMAScript 6 Today</a> by Dr. Axel Rauschmayer<br>
<a href="https://github.com/lukehoban/es6features">ES6 Features</a> by Luke Hoban<br>
<a href="http://www.2ality.com/2014/12/one-javascript.html">One JavaScript: avoiding versioning in ECMAScript 6</a> by Dr. Axel Rauschmayer<br>
<a href="http://sett.ociweb.com/sett/settApr2014.html">ES6 : Jump in, the water is warm!</a> by R. Mark Volkmann (4/14)<br>
<a href="http://sett.ociweb.com/sett/settJul2014.html">Using ES6 Today!</a> by R. Mark Volkmann (7/14)<br>
<a href="https://www.youtube.com/watch?v=Q52MoV0oW0k">ES6 talk at Angular Lunch</a> by R. Mark Volkmann (11/14)<br>
<h3>Arrays</h3>
<a href="http://www.2ality.com/2014/05/es6-array-methods.html">ECMAScript 6's new array methods</a> by Dr. Axel Rauschmayer
<h3>Collections</h3>
<a href="http://www.2ality.com/2015/01/es6-maps-sets.html">ECMAScript 6: maps and sets</a> by Dr. Axel Rauschmayer<br>
<a href="http://www.2ality.com/2015/01/es6-set-operations.html">ECMAScript 6: sets: union, intersection, difference</a> by Dr. Axel Rauschmayer
<h3>Functions</h3>
<a href="http://www.2ality.com/2014/04/required-parameters-es6.html">Handling required parameters in ECMAScript 6</a> by Dr. Axel Rauschmayer<br>
<a href="http://www.2ality.com/2014/06/es6-multiple-return-values.html">Multiple return values in ECMAScript 6</a> by Dr. Axel Rauschmayer
<h3>Generators</h3>
<a href="http://www.2ality.com/2014/08/formatting-generator-asterisk.html">How should I format the ECMAScript 6 generator asterisk?</a> by Dr. Axel Rauschmayer
<h3>Iterators</h3>
<a href="http://github.com/fitzgen/wu.js/">wu.js</a> - a JavaScript library providing higher order functions for ES6 iterators by Nick Fitzgerald<br>
<a href="https://github.com/rbuckton/queryjs">QueryJS</a> - a Query API over ES6 Iterators by Ron Buckton<br>
<a href="https://github.com/aaronpowell/linq-in-javascript">LINQ in JavaScript</a> - an implementation of C# LINQ that uses ES6 iterators by Aaron Powell
<h3>Modules</h3>
<a href="http://www.2ality.com/2014/09/es6-modules-final.html">ECMAScript 6 modules: the final syntax</a> by Dr. Axel Rauschmayer
<h3>Objects</h3>
<a href="http://www.2ality.com/2014/01/object-assign.html">ECMAScript 6: merging objects via Object.assign()</a> by Dr. Axel Rauschmayer<br>
<a href="http://www.2ality.com/2014/12/es6-oop.html">ECMAScript 6: new OOP features besides classes</a> by Dr. Axel Rauschmayer
<h3>Promises</h3>
<a href="http://www.2ality.com/2014/09/es6-promises-foundations.html">ECMAScript 6 promises (1/2): foundations</a> by Dr. Axel Rauschmayer<br>
<a href="http://www.2ality.com/2014/10/es6-promises-api.html">ECMAScript 6 promises (2/2): the API</a> by Dr. Axel Rauschmayer
<h3>Proxies</h3>
<a href="http://www.2ality.com/2014/12/es6-proxies.html">Meta programming with ECMAScript 6 proxies</a> by Dr. Axel Rauschmayer
<h3>Symbols</h3>
<a href="http://www.2ality.com/2014/12/es6-symbols.html">Symbols in ECMAScript 6</a> by Dr. Axel Rauschmayer
<h3>Template Strings</h3>
<a href="http://www.2ality.com/2015/01/template-strings-html.html">HTML templating with ES6 template strings</a> by Dr. Axel Rauschmayer
<h3>Tools</h3>
<a href="https://github.com/google/traceur-compiler">Google Traceur</a><br>
<a href="https://6to5.org/">6to5</a><br>
</body>
</html>