Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/travishorn/es6-features-by-example
ECMAScript 6, also known as ECMAScript 2015, is the upcoming version of the ECMAScript standard. This standard is targeting ratification in June 2015. ES6 is a significant update to the language, and the first update to the language since ES5 was standardized in 2009. Implementation of these features in major JavaScript engines is underway now.
https://github.com/travishorn/es6-features-by-example
Last synced: 28 days ago
JSON representation
ECMAScript 6, also known as ECMAScript 2015, is the upcoming version of the ECMAScript standard. This standard is targeting ratification in June 2015. ES6 is a significant update to the language, and the first update to the language since ES5 was standardized in 2009. Implementation of these features in major JavaScript engines is underway now.
- Host: GitHub
- URL: https://github.com/travishorn/es6-features-by-example
- Owner: travishorn
- Created: 2015-04-24T21:35:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-04-27T19:23:06.000Z (over 9 years ago)
- Last Synced: 2024-04-14T11:56:22.670Z (9 months ago)
- Language: HTML
- Size: 152 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ES6 Features by Example
ECMAScript 6, also known as ECMAScript 2015, is the upcoming version of the ECMAScript standard. This standard is targeting ratification in June 2015. ES6 is a significant update to the language, and the first update to the language since ES5 was standardized in 2009. Implementation of these features in major JavaScript engines is [underway now](http://kangax.github.io/es5-compat-table/es6/).
See the [draft ES6 standard](https://people.mozilla.org/~jorendorff/es6-draft.html) for full specification of the ECMAScript 6 language.
The descriptions and code examples on this site are taken from an MIT-licensed [project by Luke Hoban](https://github.com/lukehoban/es6features) and have been modified to provide examples runnable in your browser. All examples are transpiled to ES5 first before being included on each page. If you'd like to see the ES5 version, check out the es5 directory.
## To Do
- Add description, example, and code for
- Modules
- Module Loaders
- Map, Set, Weakmap, & Weakset
- Proxies
- Symbols
- Subclassable Built-ins
- Promises
- Math, Number, String, Array, & Object APIs
- Binary & Octal Literals
- Reflect API
- Tail Calls## License
The MIT License (MIT)
Copyright (c) 2015 Travis Horn
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.