Last active
April 20, 2017 19:13
-
-
Save joecritch/4e79fab2b084921e40fb71c60e159b9d to your computer and use it in GitHub Desktop.
A Day of React: ES features to know
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ECMAScript features to know for "A Day of React" | |
- **You'll need to know ES5, then some features from ES2015.** | |
Learn the following from the ES2015 specification (See "Learn ES2015": https://babeljs.io/learn-es2015/) | |
- Arrows and lexical 'this' | |
- Template Strings | |
- Destructuring | |
- Default + Rest + Spread | |
- Let + Const | |
- Modules | |
- Object.assign (https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment