Home > Article > Web Front-end > What versions of ecmascript are there?
The versions are: 1. Version 1.0; 2. Version 2.0; 3. Version 3.0; 4. Version 5.0; 5. Version 5.1; 6. Version 2015 (referred to as ES6); 7. Version 2016 (referred to as ES7 ); 8. 2017 version (ES8); 9. 2018 version (ES9); 10. 2019 version (ES10).
The operating environment of this tutorial: Windows 7 system, ECMAScript version 6, Dell G3 computer.
ECMAScript is a script programming language standardized by Ecma International (formerly the European Computer Manufacturers Association) through ECMA-262. This language is widely used on the World Wide Web. It is often called JavaScript or JScript, so it can be understood as a standard for JavaScript, but in fact the latter two are implementations and extensions of the ECMA-262 standard.
ECMAScript (ES) version introduction (version release time)
Version | Description | |
---|---|---|
ES1.0 was released | In July of that year, the ECMA262 standard was released | |
ES2.0 released | This version has been modified to fully comply with the ISO/IEC 16262 international standard. | |
ES3.0 was released | became the common standard for JavaScript and received widespread support | |
ES4.0 draft was released | Major manufacturers had different opinions and the plan was not passed | |
Released ES3.1 and renamed it ECMAScript 5 | Abolished ECMAScript 4.0, so version 4.0 does not exist | |
ES 5.0 officially released | ||
This version became the ISO international standard (ISO/IEC 16262:2011) | December 2013 | |
ES6 was officially released and renamed "ECMAScript 2015" | TC39 The committee decided to release a version of ECMAScript every year | June 2016 |
##June 2019 |
||
Specification address: ES6: http://www.ecma-international.org/ecma-262/6.0/ Related project address: ECMA TC39: https://github.com/tc39 Others: View the latest version of ecma-262: https://www.ecma-international.org/publications/standards/Ecma-262.htm The relationship between JavaScript and ECMAScript JavaScript is a scripting language and ECMAScript is a specification. JavaScript is a scripting language based on the ECMAScript specification. JavaScript is only one implementation of ECMAScript, and there are other implementations. Supplementary explanation of professional terms:
|
The above is the detailed content of What versions of ecmascript are there?. For more information, please follow other related articles on the PHP Chinese website!