ECMAScript


ECMAScript
is a general-purpose programming language, standardized by Ecma International according to the document It is a JavaScript standard meant to ensure the interoperability of Web pages across different Web browsers. ECMAScript is commonly used for client-side scripting on the World Wide Web, and it is increasingly being used for writing server applications and services using Node.js.

ECMAScript, ECMA-262 and JavaScript

ECMAScript is a programming language itself, specified in the document ECMA-262. The names "JavaScript" and "ECMAScript" are essentially different names for the same thing.
ECMA-262 is the specification of the programming language ECMAScript.

History

The ECMAScript specification is a standardized specification of a scripting language developed by Brendan Eich of Netscape; initially it was named Mocha, later LiveScript, and finally JavaScript. In December 1995, Sun Microsystems and Netscape announced JavaScript in a press release. In November 1996, Netscape announced a meeting of the Ecma International standards organization to advance the standardization of JavaScript. The first edition of ECMA-262 was adopted by the Ecma General Assembly in June 1997. Several editions of the language standard have been published since then. The name "ECMAScript" was a compromise between the organizations involved in standardizing the language, especially Netscape and Microsoft, whose disputes dominated the early standards sessions. Eich commented that "ECMAScript was always an unwanted trade name that sounds like a skin disease." ECMAScript has been formalized through operational semantics by work at Stanford University and the Department of Computing, Imperial College London for security analysis and standardization.
While both JavaScript and JScript aim to be compatible with ECMAScript, they also provide additional features not described in the ECMA specifications.

Versions

There are ten editions of ECMA-262 published. Work on version 10 of the standard was finalized in June 2019.
EditionDate publishedNameChanges from prior editionEditor
1June 1997First editionGuy L. Steele Jr.
2June 1998Editorial changes to keep the specification fully aligned with ISO/IEC 16262 international standardMike Cowlishaw
3December 1999Added regular expressions, better string handling, new control statements, try/catch exception handling, tighter definition of errors, formatting for numeric output and other enhancementsMike Cowlishaw
4Abandoned Fourth Edition was abandoned, due to political differences concerning language complexity. Many features proposed for the Fourth Edition have been completely dropped; some were incorporated into the sixth edition.
5December 2009Adds "strict mode," a subset intended to provide more thorough error checking and avoid error-prone constructs. Clarifies many ambiguities in the 3rd edition specification, and accommodates behaviour of real-world implementations that differed consistently from that specification. Adds some new features, such as getters and setters, library support for JSON, and more complete reflection on object properties.Pratap Lakshman, Allen Wirfs-Brock
5.1June 2011This edition 5.1 of the ECMAScript standard is fully aligned with third edition of the international standard ISO/IEC 16262:2011.Pratap Lakshman, Allen Wirfs-Brock
6June 2015ECMAScript 2015 See [|6th Edition – ECMAScript 2015]Allen Wirfs-Brock
7June 2016ECMAScript 2016 See [|7th Edition – ECMAScript 2016]Brian Terlson
8June 2017ECMAScript 2017 See [|8th Edition – ECMAScript 2017]Brian Terlson
9June 2018ECMAScript 2018 See [|9th Edition – ECMAScript 2018]Brian Terlson
10June 2019ECMAScript 2019 See [|10th Edition – ECMAScript 2019]Brian Terlson, Bradley Farias, Jordan Harband
11June 2020ECMAScript 2020 See [|11th Edition – ECMAScript 2020]Jordan Harband, Kevin Smith

In June 2004, Ecma International published ECMA-357 standard, defining an extension to ECMAScript, known as ECMAScript for XML. Ecma also defined a "Compact Profile" for ECMAScript – known as ES-CP, or ECMA 327 – that was designed for resource-constrained devices, which was withdrawn in 2015.

4th Edition (abandoned)

The proposed fourth edition of ECMA-262 would have been the first major update to ECMAScript since the third edition was published in 1999. The specification was originally targeted for completion by October 2008. The first draft was dated February 1999. An overview of the language was released by the working group on October 23, 2007.
By August 2008, the ECMAScript 4th edition proposal had been scaled back into a project codenamed ECMAScript Harmony. Features under discussion for Harmony at the time included:
The intent of these features was partly to better support programming in the large, and to allow sacrificing some of the script's ability to be dynamic to improve performance. For example, Tamarin – the virtual machine for ActionScript, developed and open-sourced by Adobe – has just-in-time compilation support for certain classes of scripts.
In addition to introducing new features, some ES3 bugs were proposed to be fixed in edition 4. These fixes and others, and support for JSON encoding/decoding, have been folded into the ECMAScript, 5th Edition specification.
Work started on Edition 4 after the ES-CP specification was completed, and continued for approximately 18 months where slow progress was made balancing the theory of Netscape's JavaScript 2 specification with the implementation experience of Microsoft's JScript.NET. After some time, the focus shifted to the ECMAScript for XML standard. The update has not been without controversy. In late 2007, a debate between Eich, later the Mozilla Foundation's CTO, and Chris Wilson, Microsoft's platform architect for Internet Explorer, became public on a number of blogs. Wilson cautioned that because the proposed changes to ECMAScript made it backwards incompatible in some respects to earlier versions of the language, the update amounted to "breaking the Web," and that stakeholders who opposed the changes were being "hidden from view". Eich responded by stating that Wilson seemed to be "repeating falsehoods in blogs" and denied that there was attempt to suppress dissent and challenged critics to give specific examples of incompatibility. He pointed out that Microsoft Silverlight and Adobe AIR rely on C# and ActionScript 3 respectively, both of which are larger and more complex than ECMAScript Edition 3.

5th Edition

Yahoo, Microsoft, Google, and other 4th edition dissenters formed their own subcommittee to design a less ambitious update of ECMAScript 3, tentatively named ECMAScript 3.1. This edition would focus on security and library updates with a large emphasis on compatibility. After the aforementioned public sparring, the ECMAScript 3.1 and ECMAScript 4 teams agreed on a compromise: the two editions would be worked on, in parallel, with coordination between the teams to ensure that ECMAScript 3.1 remains a strict subset of ECMAScript 4 in both semantics and syntax.
However, the differing philosophies in each team resulted in repeated breakages of the subset rule, and it remained doubtful that the ECMAScript 4 dissenters would ever support or implement ECMAScript 4 in the future. After over a year since the disagreement over the future of ECMAScript within the Ecma Technical Committee 39, the two teams reached a new compromise in July 2008: Brendan Eich announced that Ecma TC39 would focus work on the ECMAScript 3.1 project with full collaboration of all parties, and vendors would target at least two interoperable implementations by early 2009. In April 2009, Ecma TC39 published the "final" draft of the 5th edition and announced that testing of interoperable implementations was expected to be completed by mid-July. On December 3, 2009, ECMA-262 5th edition was published.

6th Edition – ECMAScript 2015

The 6th edition, initially known as ECMAScript 6 then and later renamed to ECMAScript 2015, was finalized in June 2015. This update adds significant new syntax for writing complex applications, including class declarations, ES6 modules like import * as moduleName from "..."; export const Foo, but defines them semantically in the same terms as ECMAScript 5 strict mode. Other new features include iterators and for...of loops, Python-style generators, arrow function expression, let keyword for local declarations, const keyword for constant local declarations, binary data, typed arrays, new collections, promises, number and math enhancements, reflection, proxies and template literals for strings. The complete list is extensive. As the first "ECMAScript Harmony" specification, it is also known as "ES6 Harmony."

7th Edition – ECMAScript 2016

The 7th edition, officially known as ECMAScript 2016, was finalized in June 2016. Its features include block-scoping of variables and functions, destructuring patterns, proper tail calls, exponentiation operator ** for numbers, await, async keywords for asynchronous programming, and the function. Decorators are also part of ES7.
The exponentiation operator is equivalent to, but provides a simpler syntax similar to languages like Python, F#, Perl, and Ruby.async / was hailed as an easier way to use promises and develop asynchronous code.

8th Edition – ECMAScript 2017

The 8th edition, officially known as ECMAScript 2017, was finalized in June 2017. Its features include the, and functions for easy manipulation of Objects, async/awaitconstructions which use generators and promises, and additional features for concurrency and atomics.

9th Edition – ECMAScript 2018

The 9th edition, officially known as ECMAScript 2018, was finalized in June 2018. New features include rest/spread operators for object literals, asynchronous iteration, Promise.prototype.finally and additions to RegExp.
The spread operator allows for the easy copying of object properties, as shown below.
let object =
let objectClone = Object.assign // before ES9
let objectClone = // ES9 syntax
let otherObject =
console.log // ->

10th Edition – ECMAScript 2019

The 10th edition, officially known as ECMAScript 2019, was published in June 2019. Added features include, but are not limited to, Array.prototype.flat, Array.prototype.flatMap, changes to Array.sort and Object.fromEntries.
is now guaranteed to be stable, meaning that elements with the same sorting precedence will appear in the same order in the sorted array. Array.prototype.flat flattens an array to a specified depth, meaning that all subarray elements are concatenated recursively.

11th Edition – ECMAScript 2020

The 11th edition, officially known as ECMAScript 2020, was published in June 2020. In addition to new functions, this version includes a BigInt primitive for arbitrary-sized integers, new null coalescing syntax and a name which always refers to the global object.
BigInts are created either with the constructor or with the syntax, where "n" is placed after the number literal. Numbers in ECMAScript are usually 64-bit floats, so BigInts allow the representation and manipulation of integers beyond. The built-in functions in are not compatible with BigInts; for example, exponentiation of BigInts must be done with the operator instead of.
The null coalescing syntax allows a terse way to deal with nullish values. In the following example, the right hand side is selected only when the left hand side is undefined or null. This contrasts with the operator, which would return "string" for all the examples.
false ?? "string" // -> false
NaN ?? "string" // -> NaN
undefined ?? "string" // -> "string"

ES.Next

ES.Next is a dynamic name that refers to whatever the next version is at the time of writing. ES.Next features are finished proposals as listed at that are not part of a ratified specification. The language committee follows a "living spec" model so these changes are part of the standard and ratification is a formality.

Features

The ECMAScript language includes structured, dynamic, functional, and prototype-based features.

Imperative and structured

ECMAScript JavaScript supports C style structured programming. However, there exist some dissimilarities between both languages implementation of scoping. Until ECMAScript 2015, JavaScript supported only function scoping using the keyword var. ECMAScript 2015 added the keywords let and const allowing JavaScript to support both block scoping as well as function scoping. JavaScript supports automatic semicolon insertion, meaning that semicolons that are normally used to terminate a statement in C may be omitted in JavaScript.
Like C-style languages, control flow is done with the,,,, and statements. Functions are weakly typed and may accept and return any type. Arguments not provided default to.

Weakly typed

ECMAScript is weakly typed. This means that certain types are assigned implicitly based on the operation being performed. However, there are several quirks in JavaScript's implementation of the conversion of a variable from one type to another. These quirks have drawn criticism from many developers.

Dynamic

ECMAScript is dynamically typed. Thus, a type is associated with a value rather than an expression. ECMAScript supports various ways to test the type of objects, including duck typing.

Transpiling

Since ES 2015, transpiling JavaScript has become very common. Transpilation is a source-to-source compilation in which the newer versions of JavaScript are used in the user's source code and the transpiler rewrites them so that they are compliant with the current specification. Usually, transpilers transpile down to ES3 to maintain compatibility with all versions of browsers. The settings to transpiling to a specific version can be configured according to need. Transpiling adds an extra step to the build process and is sometimes done to avoid needing polyfills. Polyfills allow using functionalities from newer ECMA versions in older environments that lack them. Polyfills do this at runtime in the interpreter, such as the user's browser or on the server. Instead, transpiling rewrites the ECMA code itself during the build phase of development, before it reaches the interpreter.

Conformance

In 2010, Ecma International started developing a standards test for Ecma 262 ECMAScript.
Test262 is an ECMAScript conformance test suite that can be used to check how closely a JavaScript implementation follows the ECMAScript 5th Edition Specification. The test suite contains thousands of individual tests, each of which tests some specific requirements of the ECMAScript specification. The development of Test262 is a project of the Ecma Technical Committee 39. The testing framework and individual tests are created by member organizations of TC39 and contributed to Ecma for use in Test262.
Important contributions were made by Google and Microsoft who both contributed thousands of tests.
The Test262 testsuite consisted of tests as of 2020. ECMAScript specifications through ES7 are well-supported in major web browsers. The table below shows the conformance rate for current versions of software with respect to the most recent editions of ECMAScript.

ISO standards

*
*
*
*