5 "url": "http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts",
6 "keywords": ["es6", "es2015", "ecmascript"],
12 "name": "Saam Barati",
13 "email": "sbarati@apple.com",
14 "twitter": "@saambarati"
17 "name": "Keith Miller",
18 "email": "keith_miller@apple.com"
24 "url": "https://github.com/tc39/ecma262",
25 "keywords": ["es7", "ecmascript"]
29 "url": "https://github.com/tc39/ecma262",
30 "keywords": ["esnext", "ecmascript"]
33 "name": "Internationalization API",
37 "url": "http://ecma-international.org/publications/standards/Ecma-402.htm",
38 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl",
39 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=90906",
40 "description": "The Internationalization API provides language sensitive operations for string, number, and date.",
41 "keywords": ["Intl", "Collator", "ECMA-402"]
44 "name": "WebAssembly",
48 "url": "http://webassembly.github.io",
49 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=146064",
50 "description": "WebAssembly is a new format for native programs on the web. It aims to support everything that asm.js supports, but allows the VM to sidestep the JS parsing and profiling pipeline entirely.",
51 "keywords": ["webassembly", "wasm", "webassy"],
54 "email": "web-evangelist@apple.com",
55 "twitter": "@jonathandavis"
62 "name": "Array.prototype.copyWithin",
64 "status": "Supported",
65 "enabled-by-default": true
67 "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.prototype.copywithin",
68 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/copyWithin",
69 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=145107",
70 "specification": "ES6",
72 "name": "Yusuke Suzuki",
73 "email": "utatane.tea@gmail.com"
77 "name": "Array.prototype.includes",
79 "status": "Supported",
80 "enabled-by-default": true
82 "url": "https://github.com/tc39/Array.prototype.includes",
83 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes",
84 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142707",
85 "specification": "ES7"
88 "name": "Arrow Functions",
90 "status": "Supported",
91 "enabled-by-default": true
93 "url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-arrow-function-definitions",
94 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions",
95 "description": "Arrow functions are a new type of function expression in ES6 that lexically binds this, new.target, arguments, and super.",
96 "specification": "ES6"
99 "name": "Async Iteration",
101 "status": "Supported",
102 "enabled-by-default": true
104 "url": "https://tc39.github.io/proposal-async-iteration/",
105 "documentation-url": "http://2ality.com/2016/10/asynchronous-iteration.html",
106 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=166693",
107 "description": "This feature adds syntactic support for asynchronous iteration using the AsyncIterable and AsyncIterator protocols. It introduces a new IterationStatement, for-await-of, and adds syntax for creating async generator functions and methods.",
108 "specification": "ESNext",
110 "name": "Oleksandr Skachkov",
111 "twitter": "@alSkachkov",
112 "email": "gskachkov@gmail.com"
118 "status": "Supported",
119 "enabled-by-default": true
121 "url": "https://tc39.es/proposal-bigint/",
122 "description": "BigInt is a new primitive that offers arbitrary-precision integers.",
123 "specification": "ESNext"
126 "name": "Block Scoping",
128 "status": "Supported",
129 "enabled-by-default": true
131 "url": "http://www.ecma-international.org/ecma-262/6.0/#sec-let-and-const-declarations",
132 "documentation-url": "http://www.2ality.com/2015/02/es6-scoping.html",
133 "description": "Block Scoping let/const/class variables are a new way of declaring variables that are local to the block they're defined in. They have clearer scoping semantics than var variables.",
134 "specification": "ES6"
139 "status": "Supported",
140 "enabled-by-default": true
142 "url": "http://www.ecma-international.org/ecma-262/6.0/#sec-class-definitions",
143 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes",
144 "description": "Classes are a way to write object oriented code in JavaScript with standard syntax and semantics.",
145 "specification": "ES6"
148 "name": "Default Parameter Values",
150 "status": "Supported",
151 "enabled-by-default": true
153 "url": "http://www.ecma-international.org/ecma-262/6.0/#sec-function-definitions",
154 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Default_parameters",
155 "description": "Default parameter values are a convenient way to specify expressions that parameters should evaluate to when undefined (or nothing) is passed in as a function argument.",
156 "specification": "ES6"
159 "name": "Destructuring Syntax",
161 "status": "Supported",
162 "enabled-by-default": true
164 "url": "http://www.ecma-international.org/ecma-262/6.0/#sec-destructuring-assignment",
165 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment",
166 "description": "Destructuring syntax is a shorthand form that allows you to easily assign local variables to the values of an object or array's properties.",
167 "specification": "ES6"
170 "name": "Exponentiation Syntax",
172 "status": "Supported",
173 "enabled-by-default": true
175 "url": "https://tc39.github.io/ecma262/#prod-ExponentiationExpression",
176 "specification": "ES7",
177 "description": "Exponentiation syntax (like x ** y) provides the syntax suger for exponentiation.",
178 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=159969",
179 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators#Exponentiation_(**)",
181 "name": "Yusuke Suzuki",
182 "twitter": "@Constellation",
183 "email": "utatane.tea@gmail.com"
187 "name": "Generators",
189 "status": "Supported",
190 "enabled-by-default": true
192 "url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-generator-objects",
193 "specification": "ES6",
194 "description": "An iterative function object that is interruptible and resumable. Generators are currently spec compliant, however, we're still actively working on improving their performance.",
195 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=150290",
196 "documentation-url": "https://hacks.mozilla.org/2015/05/es6-in-depth-generators/",
198 "name": "Yusuke Suzuki",
199 "twitter": "@Constellation",
200 "email": "utatane.tea@gmail.com"
204 "name": "Map Data Structure",
206 "status": "Supported",
207 "enabled-by-default": true
209 "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-map-constructor",
210 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map",
211 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120333",
212 "description": "Map provides an <a href=\"https://en.wikipedia.org/wiki/Associative_array\">associative array data</a> structure that maps keys to values.",
213 "specification": "ES6"
218 "status": "Supported",
219 "enabled-by-default": true
221 "url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-modules",
222 "documentation-url": "https://hacks.mozilla.org/2015/08/es6-in-depth-modules/",
223 "description": "Modules make modularizing code and splitting it across different files easy because the syntax and semantics are now standard in the JavaScript langauge.",
224 "specification": "ES6",
225 "comment": "Modules can be loaded through script type=\"module\" tags. It is also possible to use Modules with the jsc command line tool by passing the -m flag."
228 "name": "Number Object Extensions",
230 "status": "Supported",
231 "enabled-by-default": true
233 "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number-objects",
234 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number",
235 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=131707",
236 "specification": "ES6",
237 "description": "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."
240 "name": "Object rest/spread",
242 "status": "Supported",
243 "enabled-by-default": true
245 "url": "https://github.com/tc39/proposal-object-rest-spread",
246 "documentation-url": "http://2ality.com/2016/10/rest-spread-properties.html",
247 "specification": "ESNext",
248 "description": "New syntax for gathering the rest of an object's properties when using destructuring."
251 "name": "Octal and Binary Literals",
253 "status": "Supported",
254 "enabled-by-default": true
256 "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-literals-numeric-literals",
257 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142681",
258 "specification": "ES6",
259 "description": "New syntax for number literals. Numbers can be provided as binary (e.g. 0b001001) or octal (e.g. 0o24)."
262 "name": "Promise Objects",
264 "status": "Supported",
265 "enabled-by-default": true,
266 "shipped": ["ios8-safari", "osx-safari-7.1"]
268 "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-promise-objects",
269 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise",
270 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120260",
271 "specification": "ES6"
274 "name": "Proxy Objects",
276 "status": "Supported"
278 "url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-proxy-objects",
279 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=35731",
280 "specification": "ES6",
281 "description": "An intermediary object that defines custom basic behaviors of another object such as property lookup, assignment, enumeration.",
284 "twitter": "@jonathandavis",
285 "email": "web-evangelist@apple.com"
289 "name": "Reflect API",
291 "status": "Supported",
292 "enabled-by-default": true
294 "url": "http://www.ecma-international.org/ecma-262/6.0/#sec-reflect-object",
295 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect",
296 "description": "The Reflect API is a way to set properties and call methods on certain objects that can be intercepted by ES6 Proxies.",
297 "specification": "ES6"
300 "name": "Rest Parameter",
302 "status": "Supported",
303 "enabled-by-default": true
305 "url": "http://www.ecma-international.org/ecma-262/6.0/#sec-function-definitions",
306 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters",
307 "description": "Rest parameters allow you to collect the arguments, or the arguments after some offset, of a function into a JS array.",
308 "specification": "ES6",
310 "name": "Saam Barati",
311 "email": "sbarati@apple.com",
312 "twitter": "@saambarati"
316 "name": "Set Data Structure",
318 "status": "Supported",
319 "enabled-by-default": true
321 "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-set-constructor",
322 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set",
323 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120549",
324 "description": "Set is a collection of unique objects.",
325 "specification": "ES6"
328 "name": "Symbol Objects",
330 "status": "Supported",
331 "enabled-by-default": true
333 "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-symbol-objects",
334 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol",
335 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=140435",
336 "specification": "ES6",
338 "name": "Yusuke Suzuki",
339 "email": "utatane.tea@gmail.com"
343 "name": "Tagged Templates",
345 "status": "Supported",
346 "enabled-by-default": true
348 "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tagged-templates",
349 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/template_strings",
350 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=143183",
351 "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.",
352 "specification": "ES6",
354 "name": "Yusuke Suzuki",
355 "email": "utatane.tea@gmail.com"
359 "name": "Tail Calls",
361 "status": "Supported",
362 "enabled-by-default": true
364 "url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-tail-position-calls",
365 "documentation-url": "http://www.2ality.com/2015/06/tail-call-optimization.html",
366 "description": "Tail Calls allow you to make function calls that are in tail position without growing the stack. It is commonly used to write loops using function calls instead of for or while syntax.",
367 "specification": "ES6"
370 "name": "Template Literals",
372 "status": "Supported",
373 "enabled-by-default": true
375 "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-template-literals",
376 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/template_strings",
377 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142691",
378 "description": "The template-literals (like `Hello ${World}`) provides string interpolation feature. Line terminators are also allowed in the template-literals.",
379 "specification": "ES6",
381 "name": "Yusuke Suzuki",
382 "email": "utatane.tea@gmail.com"
388 "status": "Supported",
389 "enabled-by-default": true
391 "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-weakmap-objects",
392 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap",
393 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120912",
394 "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.",
395 "specification": "ES6"
400 "status": "Supported",
401 "enabled-by-default": true
403 "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-weakset-objects",
404 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet",
405 "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142408",
406 "description": "WeakSet is a collection of unique objects. Keys stored in WeakSet are referenced weakly.",
407 "specification": "ES6",
409 "name": "Yusuke Suzuki",
410 "email": "utatane.tea@gmail.com"
414 "name": "async/await",
416 "status": "Supported",
417 "enabled-by-default": true
419 "url": "https://tc39.github.io/ecma262/#sec-async-function-definitions",
420 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function",
421 "description": "Async functions are a way to mix generators with promises to allow writing asynchronous code that looks synchronous.",
422 "specification": "ES7",
424 "name": "Saam Barati",
425 "twitter": "@saambarati",
426 "email": "sbarati@apple.com"
430 "name": "for...of Loops",
432 "status": "Supported",
433 "enabled-by-default": true
435 "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-for-in-and-for-of-statements",
436 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of",
437 "description": "The for...of loops iterate over the values provided by the iterator of the target object.",
438 "specification": "ES6",
439 "comment": "Older versions of WebKit only supported iterating JavaScript arrays."
442 "name": "new.target",
444 "status": "Supported",
445 "enabled-by-default": true
447 "url": "http://www.ecma-international.org/ecma-262/6.0/#sec-built-in-function-objects",
448 "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/new.target",
449 "description": "new.target allows you to detect if a function or constructor was instantiated with the new operator, or if instead it was called using normal function calling syntax.",
450 "specification": "ES6"