Home > Article > Web Front-end > What is the abbreviation of es6?
es6 is the abbreviation of "ECMAScript 6" and is the 6th version of ECMAScript. ECMAScript is the basic standard part of JavaScript and the syntax specification of JavaScript; es6 was officially released in June 2015, and is officially called ECMAScript2015.
The operating environment of this tutorial: Windows 10 system, ECMAScript version 6.0, Dell G3 computer.
ES6 is the abbreviation of ECMAScript 6, which is easy to understand. As the name suggests, it is the 6th version of ECMAScript,
ECMAScript is a scripting programming language standardized by Ecma International (formerly the European Computer Manufacturers Association) through ECMA-262.
Ecma International (Ecma International) is an international membership system information and telecommunications standards organization. Before 1994, it was called the European Computer Manufacturers Association. Because of the internationalization of computers, the organization's standards involve many other countries, so the organization decided to change its name to show its international nature. The name is no longer an acronym.
What is the relationship between ECMAScript and JavaScript?
Simply put, ECMAScript is the international standard for the JavaScript language, and JavaScript is the implementation of ECMAScript.
What is ECMAScript5 and what is ECMAScript6?
Some people always think that ECMAScript5 is the so-called ECMAScript2015 (is it because they all have 5?), but this is actually wrong. , as early as December 2009, ECMA released ECMAScript5.
The ECMAScript6 we are talking about was released in June 2015. It is the next generation standard of the JavaScript language. It is officially called ECMAScript2015. Mozilla will launch JavaScript 2.0 based on this standard.
ECMAScript6 is a major improvement after ECMAScript5. The language specification has been expanded from 245 pages in the ES5.1 era to 600 pages. The goal of ECMAScript6 is to enable the JavaScript language to be used to write large and complex applications and become an enterprise-level development language. ECMAScript6 adds many necessary features, such as modules and classes, as well as some practical features, such as Maps, Sets, Promises, Generators, etc. Although ECMAScript 6 has made a lot of updates, it is still fully backwards compatible with previous versions, and the standardization committee decided to avoid "broken web experience" caused by incompatible versions of the language. As a result, all the old code can run normally and the entire transition seems smoother, but the problem that comes with it is that the old problems that developers have complained about for years still exist.
What’s unpleasant is that there is currently no JavaScript agent that fully supports ES6 (whether it is a browser environment or a server environment), so we developers who really use ECMAScript6 need to translate the ECMAScript6 code into ECMAScript5 code.
[Related recommendations: javascript video tutorial, web front-end】
The above is the detailed content of What is the abbreviation of es6?. For more information, please follow other related articles on the PHP Chinese website!