@@ -25,6 +25,75 @@ Just send a pull request or open an [issue](https://github.com/ericdouglas/ES6-L
25
25
26
26
## Articles & Tutorials
27
27
28
+ - ** Optimisation**
29
+ - proper tail calls (tail call optimisation)
30
+ - ** Syntax**
31
+ - default function parameters
32
+ - rest parameters
33
+ - spread (...) operator
34
+ - object literal extensions
35
+ - for..of loops
36
+ - octal and binary literals
37
+ - template strings
38
+ - RegExp "y" and "u" flags
39
+ - destructuring
40
+ - Unicode code point escapes
41
+ - new.target
42
+
43
+ - ** Bindings**
44
+ - const
45
+ - let
46
+ - block-level function declaration
47
+
48
+ - ** Functions**
49
+ - arrow functions
50
+ - class
51
+ - super
52
+ - generators
53
+
54
+ - ** Built-ins**
55
+ - typed arrays
56
+ - Map
57
+ - Set
58
+ - WeakMap
59
+ - WeakSet
60
+ - Proxy
61
+ - Reflect
62
+ - Promise
63
+ - Symbol
64
+ - Well-known symbols
65
+
66
+ - ** Built-in extensions**
67
+ - Object static methods
68
+ - Function "name" property
69
+ - String static methods
70
+ - String.prototype methods
71
+ - RegExp.prototype methods
72
+ - Array static methods
73
+ - Array.static methods
74
+ - Number properties
75
+ - Math methods
76
+
77
+ - ** Subclassing**
78
+ - Array is subclassable
79
+ - RegExp is subclassable
80
+ - Function is subclassable
81
+ - Promise is subclassable
82
+ - miscellaneous is subclassable
83
+
84
+ - ** Misc**
85
+ - prototype and bound functions
86
+ - Object static methods accept primitives
87
+ - Miscellaneous
88
+
89
+ - ** Annex b**
90
+ - non-strict function semantics
91
+ - ` __proto__ ` in object literals
92
+ - ` Object.prototype.__proto__ `
93
+ - String.prototype HTML methods
94
+ - RegExp.prototype.compile
95
+ - RegExp syntax extensions
96
+
28
97
1 . [ Nicholas Zakas' articles] ( http://www.nczonline.net/blog/tag/ecmascript-6/ )
29
98
1 . [ A guide to 2ality’s posts on ECMAScript.next/ECMAScript 6] ( http://www.2ality.com/2012/11/guide-esnext.html )
30
99
1 . [ Axel Rauschmayer's articles] ( http://www.2ality.com/search/label/esnext )
0 commit comments