Files
freeCodeCamp/guide/english/certifications/javascript-algorithms-and-data-structures/es6/index.md
Randell Dawson 1494a50123 fix(guide): restructure curriculum guide articles (#36501)
* fix: restructure certifications guide articles
* fix: added 3 dashes line before prob expl
* fix: added 3 dashes line before hints
* fix: added 3 dashes line before solutions
2019-07-24 13:29:27 +05:30

12 lines
642 B
Markdown

---
title: ES6
---
# ES6
ES6 also known as ECMAScript6 or ES2015, is the latest widely accepted sets of rules and conventions laid out and standardized by Ecma International. Various new features such as constant value variables and arrow functions have been introduced in this new version. Major web browsers support some features of ES6. However, it is possible to use a transpiler to convert ES6 code into ES5, which is better supported on most browsers.
#### More Information:
1. [Wikipedia | Ecma International](https://en.wikipedia.org/wiki/Ecma_International)
2. [Wikipedia | ECMAScript](https://en.wikipedia.org/wiki/ECMAScript)