- What is
ES6?ES6is the latest version of ECMAScript, and javascript is an implementation of ECMAScript.ES6added several new features, such as classes and modules, as well as iterators and collections.
- What is Transpilation and how does it relate to
ES6?- Transpilation is the process of converting code from one language to another that has a similar level of abstraction. Babel transpilers will transpile
ES6toES5so that it will work in current browsers.
- Transpilation is the process of converting code from one language to another that has a similar level of abstraction. Babel transpilers will transpile
- Looking at the ES6 Features link below, discuss one update from
ES5and if it seems useful/superfluous,- Template strings allow for the use of string interpolation and multiline strings with backticks. This does not seem superfluous as it it helps prevent injection attacks.
-
-
Save bethsecor/0c09b9c132077d42746b to your computer and use it in GitHub Desktop.
es6 - 1510
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment