5 "url": "http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts",
6 "keywords": ["es6", "es2015", "ecmascript"]
10 "url": "https://github.com/tc39/ecma262",
11 "keywords": ["es7", "ecmascript"]
19 "status": "Continuously improving",
20 "enabled-by-default": true
22 "url": "http://asmjs.org",
23 "description": "ASM.js defines a subset of JavaScript that enforce stronger typing and has specific patterns of memory access. ASM.js is rarely hand-written, it is typically generated from other languages by compiler such as Emscripten.",
24 "comment": "There is no \"use asm\" mode in JavaScriptCore. Instead WebKit integrates ASM.js optimizations directly in the optimizer. As a result, it is possible to mix ASM-style typing with regular code and still get great performance and power efficiency."
27 "name": "Array.prototype.copyWithin",
30 "enabled-by-default": true
32 "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.prototype.copywithin",
33 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/copyWithin",
34 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=145107",
35 "specification": "ES6",
37 "name": "Yusuke Suzuki",
38 "email": "utatane.tea@gmail.com"
42 "name": "Array.prototype.includes",
45 "enabled-by-default": true
47 "url": "https://github.com/tc39/Array.prototype.includes",
48 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes",
49 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142707",
50 "specification": "ES7"
56 "enabled-by-default": true
58 "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-class-definitions",
59 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes",
60 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142774",
61 "specification": "ES6",
62 "description": "The new class syntax of ES6 provides a new syntax to define and extend JavaScript objects. The class syntax is a new notation, objects still use prototypal inheritance."
65 "name": "Map data structure",
68 "enabled-by-default": true
70 "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-map-constructor",
71 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map",
72 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120333",
73 "description": "Map provides an <a href=\"https://en.wikipedia.org/wiki/Associative_array\">associative array data</a> structure that maps keys to values.",
74 "specification": "ES6"
77 "name": "Number extensions (ES6)",
80 "enabled-by-default": true
82 "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number-objects",
83 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number",
84 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=131707",
85 "specification": "ES6",
86 "description": "ES6 extend Number with the methods Number.isFinite(), Number.isInteger(), Number.isSafeInteger(), Number.isNaN() and the attributes Number.EPSILON, Number.MIN_SAFE_INTEGER, Number.MAX_SAFE_INTEGER."
89 "name": "Octal and binary literals",
92 "enabled-by-default": true
94 "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-literals-numeric-literals",
95 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142681",
96 "specification": "ES6",
97 "description": "New syntax for number literals. Numbers can be provided as binary (e.g. 0b001001) or octal (e.g. 0o24)."
100 "name": "Promise Objects",
103 "enabled-by-default": true,
104 "shipped": ["ios8-safari", "osx-safari-7.1"]
106 "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-promise-objects",
107 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise",
108 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120260",
109 "specification": "ES6"
112 "name": "Set data structure",
115 "enabled-by-default": true
117 "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-set-constructor",
118 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set",
119 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120549",
120 "description": "Set is a collection of unique objects.",
121 "specification": "ES6"
124 "name": "Symbol Objects",
127 "enabled-by-default": true
129 "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-symbol-objects",
130 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol",
131 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=140435",
132 "specification": "ES6",
134 "name": "Yusuke Suzuki",
135 "email": "utatane.tea@gmail.com"
139 "name": "Tagged templates",
142 "enabled-by-default": true
144 "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tagged-templates",
145 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/template_strings",
146 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=143183",
147 "description": "The tagged-templates (like String.raw`Hello ${World}`) provides a way to modify the produced string from a given template-literals with a function.",
148 "specification": "ES6",
150 "name": "Yusuke Suzuki",
151 "email": "utatane.tea@gmail.com"
155 "name": "Template literals",
158 "enabled-by-default": true
160 "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-template-literals",
161 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/template_strings",
162 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142691",
163 "description": "The template-literals (like `Hello ${World}`) provides string interpolation feature. Line terminators are also allowed in the template-literals.",
164 "specification": "ES6",
166 "name": "Yusuke Suzuki",
167 "email": "utatane.tea@gmail.com"
174 "enabled-by-default": true
176 "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-weakmap-objects",
177 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap",
178 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120912",
179 "description": "WeakMap provides an <a href=\"https://en.wikipedia.org/wiki/Associative_array\">associative array data</a> structure that maps keys to values. WeakMap's keys must be objects.",
180 "specification": "ES6"
186 "enabled-by-default": true
188 "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-weakset-objects",
189 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet",
190 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142408",
191 "description": "WeakSet is a collection of unique objects. Keys stored in WeakSet are referenced weakly.",
192 "specification": "ES6",
194 "name": "Yusuke Suzuki",
195 "email": "utatane.tea@gmail.com"
199 "name": "for...of loops",
202 "enabled-by-default": true
204 "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-for-in-and-for-of-statements",
205 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of",
206 "description": "The for...of loops iterate over the values provided by the iterator of the target object.",
207 "specification": "ES6",
208 "comment": "Older versions of WebKit only supported iterating JavaScript arrays."