ECMAScript version history

Last updated

ECMAScript is a JavaScript standard developed by Ecma International. Since 2015, major versions have been published every June.

Contents

ECMAScript 2023, the 14th and current version, was released in June 2023.

Versions

EditionDate publishedNameChanges from prior editionEditor
1June 1997First edition based on JavaScript 1.1 as implemented in Netscape Navigator 3.0. [1] Guy L. Steele Jr.
2June 1998Editorial changes to keep the specification fully aligned with ISO/IEC 16262:1998. Mike Cowlishaw
3December 1999Based on JavaScript 1.2 as implemented in Netscape Navigator 4.0. [2] Added regular expressions, better string handling, new control statements, try/catch exception handling, tighter definition of errors, formatting for numeric output, and other enhancements Mike Cowlishaw
4Abandoned (last draft 30 June 2003)ECMAScript 4 (ES4)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 behavior 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. [3] Pratap Lakshman, Allen Wirfs-Brock
5.1June 2011Changes to keep the specification fully aligned with ISO/IEC 16262:2011.Pratap Lakshman, Allen Wirfs-Brock
6June 2015 [4] ECMAScript 2015 (ES2015)See 6th Edition – ECMAScript 2015 Allen Wirfs-Brock
7June 2016 [5] ECMAScript 2016 (ES2016)See 7th Edition – ECMAScript 2016 Brian Terlson
8June 2017 [6] ECMAScript 2017 (ES2017)See 8th Edition – ECMAScript 2017 Brian Terlson
9June 2018 [7] ECMAScript 2018 (ES2018)See 9th Edition – ECMAScript 2018 Brian Terlson
10June 2019 [8] ECMAScript 2019 (ES2019)See 10th Edition – ECMAScript 2019 Brian Terlson, Bradley Farias, Jordan Harband
11June 2020 [9] ECMAScript 2020 (ES2020)See 11th Edition – ECMAScript 2020 Jordan Harband, Kevin Smith
12June 2021 [10] ECMAScript 2021 (ES2021)See 12th Edition – ECMAScript 2021 Jordan Harband, Shu-yu Guo, Michael Ficarra, Kevin Gibbons
13June 2022 [11] ECMAScript 2022 (ES2022)See 13th Edition – ECMAScript 2022 Shu-yu Guo, Michael Ficarra, Kevin Gibbons
14June 2023ECMAScript 2023 (ES2023)See 14th Edition – ECMAScript 2023 Shu-yu Guo, Michael Ficarra, Kevin Gibbons

In June 2004, Ecma International published ECMA-357 standard, defining an extension to ECMAScript, known as ECMAScript for XML (E4X). 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. [12]

4th Edition (abandoned)

The proposed fourth edition of ECMA-262 (ECMAScript 4 or ES4) would have been the first major update to ECMAScript since the third edition was published in 1999. The specification (along with a reference implementation) was originally targeted for completion by October 2008. [13] The first draft was dated February 1999. [14] An overview of the language was released by the working group on 23 October 2007. [15]

By August 2008, the ECMAScript 4th edition proposal had been scaled back into a project code named 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 (JIT) support for certain classes of scripts.

In addition to introducing new features, some ES3 bugs were proposed to be fixed in edition 4. [16] [17] These fixes and others, and support for JSON encoding/decoding, have been folded into the ECMAScript, 5th Edition specification. [18]

Work started on Edition 4 after the ES-CP (Compact Profile) 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 (E4X) 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", [19] and that stakeholders who opposed the changes were being "hidden from view". [20] 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. [21] 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. [22]

5th Edition – ECMAScript 2009

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 (later renamed to ECMAScript, 5th Edition) project with full collaboration of all parties, and vendors would target at least two interoperable implementations by early 2009. [23] [24] 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. [25] On December 3, 2009, ECMA-262 5th edition was published. [26]

Additions include JSON, String.trim() to easily remove whitespaces surrounding a string (" example " to "example"), String.charAt() to return a single character from a given position in a string, and Array.isArray(). A comma after the final pair of values in an object (var example = { "property1":"value1", "property2":"value2", }) also no longer causes a syntax error. [27]

6th Edition – ECMAScript 2015

The 6th edition, ECMAScript 6 (ES6) and later renamed to ECMAScript 2015, was finalized in June 2015. [4] [28] This update adds significant new syntax for writing complex applications, including class declarations (classFoo{...}), ES6 modules like import*asmoduleNamefrom"...";exportconstFoo, 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 (maps, sets and WeakMap), promises, number and math enhancements, reflection, proxies (metaprogramming for virtual objects and wrappers) and template literals using backticks (`) for multi-line strings without escape characters. [29] [30] The complete list is extensive. [31] [32] As the first "ECMAScript Harmony" specification, it is also known as "ES6 Harmony".

7th Edition – ECMAScript 2016

The 7th edition, or ECMAScript 2016, was finalized in June 2016. [5] Its features include block-scoping of variables and functions, destructuring patterns (of variables), proper tail calls, exponentiation operator ** for numbers, await, async keywords for asynchronous programming (as a preparation for ES2017), and the Array.prototype.includes function. [5] [33]

The exponentiation operator is equivalent to Math.pow, but provides a simpler syntax similar to languages like Python, F#, Perl, and Ruby. async / await was hailed as an easier way to use promises and develop asynchronous code.

8th Edition – ECMAScript 2017

The 8th edition, or ECMAScript 2017, was finalized in June 2017. [6] Its features include the Object.values, Object.entries and Object.getOwnPropertyDescriptors functions for easy manipulation of Objects, async / await constructions which use generators and promises, and additional features for concurrency and atomics. It also includes String.prototype.padStart(). [34] [6]

9th Edition – ECMAScript 2018

The 9th edition, or ECMAScript 2018, was finalized in June 2018. [7] New features include the spread operator and rest parameters (...) for object literals, asynchronous iteration, Promise.prototype.finally and additions to RegExp. [7]

The spread operator allows for the easy copying of object properties, as shown below.

letobject={a:1,b:2}letobjectClone=Object.assign({},object)// before ES2018letobjectClone={...object}// ES2018 syntaxletotherObject={c:3,...object}console.log(otherObject)// -> {c: 3, a: 1, b: 2}

10th Edition – ECMAScript 2019

The 10th edition, or ECMAScript 2019, was published in June 2019. [8] Added features include, but are not limited to, Array.prototype.flat, Array.prototype.flatMap, changes to Array.sort, and Object.fromEntries. [8]

Array.sort is now guaranteed to be stable, meaning that elements with equal sorting keys will not change relative order before and after the sort operation. Array.prototype.flat(depth=1) flattens an array to a specified depth, meaning that all subarray elements (up to the specified depth) are concatenated recursively.

Another notable change is that so-called catch binding became optional. [35]

11th Edition – ECMAScript 2020

The 11th edition, or ECMAScript 2020, was published in June 2020. [9] In addition to new functions, this version introduces a BigInt primitive type for arbitrary-sized integers, the nullish coalescing operator, and the globalThis object. [9]

BigInts are created either with the BigInt constructor or with the syntax 10n, where "n" is placed after the number literal. BigInts allow the representation and manipulation of integers beyond Number.MAX_SAFE_INTEGER, while Numbers are represented by a double-precision 64-bit IEEE 754 value. The built-in functions in Math are not compatible with BigInts; for example, exponentiation of BigInts must be done with the ** operator instead of Math.pow.

The nullish coalescing operator, ??, returns its right-hand side operand when its left-hand side is null or undefined. This contrasts with the || operator, which would return "string" for all "falsy" values, such as the ones below.

undefined??"string"// -> "string"null??"string"// -> "string"false??"string"// -> falseNaN??"string"// -> NaN

Optional chaining makes it possible to access the nested properties of an object without having an AND check at each level. An example is const zipcode = person?.address?.zipcode. If any of the properties are not present, zipcode will be undefined.

12th Edition – ECMAScript 2021

The 12th edition, ECMAScript 2021, was published in June 2021. [10] This version introduces the replaceAll method for strings; Promise.any, a promise combinator that short-circuits when an input value is fulfilled; AggregateError, a new error type to represent multiple errors at once; logical assignment operators (??=, &&=, ||=); WeakRef, for referring to a target object without preserving it from garbage collection, and FinalizationRegistry, to manage registration and unregistration of cleanup operations performed when target objects are garbage collected; separators for numeric literals (1_000); and Array.prototype.sort was made more precise, reducing the number of cases that result in an implementation-defined sort order.

13th Edition – ECMAScript 2022

The 13th edition, ECMAScript 2022, was published in June 2022. [11] This version introduces top-level await, allowing the keyword to be used at the top level of modules; new class elements: public and private instance fields, public and private static fields, private instance methods and accessors, and private static methods and accessors; static blocks inside classes, to perform per-class evaluation initialization; the #x in obj syntax, to test for presence of private fields on objects; regular expression match indices via the /d flag, which provides start and end indices for matched substrings; the cause property on Error objects, which can be used to record a causation chain in errors; the at method for Strings, Arrays, and TypedArrays, which allows relative indexing; and Object.hasOwn, a convenient alternative to Object.prototype.hasOwnProperty.

14th Edition – ECMAScript 2023

The 14th edition, ECMAScript 2023, was published in June 2023. [36] This version introduces the toSorted, toReversed, with, findLast, and findLastIndex methods on Array.prototype and TypedArray.prototype, as well as the toSpliced method on Array.prototype; added support for #! shebang comments at the beginning of files to better facilitate executable ECMAScript files; and allowed the use of most Symbols as keys in weak collections.

ES.Next

ES.Next is a dynamic name that refers to whatever the next version is at the time of writing. ES.Next features include finished proposals (aka "stage 4 proposals") as listed at finished proposals 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. [37]

Related Research Articles

<span class="mw-page-title-main">JavaScript</span> High-level programming language

JavaScript, often abbreviated as JS, is a programming language and core technology of the Web, alongside HTML and CSS. 99% of websites use JavaScript on the client side for webpage behavior.

In computer science, syntactic sugar is syntax within a programming language that is designed to make things easier to read or to express. It makes the language "sweeter" for human use: things can be expressed more clearly, more concisely, or in an alternative style that some may prefer. Syntactic sugar is usually a shorthand for a common operation that could also be expressed in an alternate, more verbose, form: The programmer has a choice of whether to use the shorter form or the longer form, but will usually use the shorter form since it is shorter and easier to type and read.

ECMAScript is a standard for scripting languages, including JavaScript, JScript, and ActionScript. It is best known as a JavaScript standard intended to ensure the interoperability of web pages across different web browsers. It is standardized by Ecma International in the document ECMA-262.

JScript is Microsoft's legacy dialect of the ECMAScript standard that is used in Microsoft's Internet Explorer web browser.

<span class="mw-page-title-main">ActionScript</span> Object-oriented programming language created for the Flash multimedia platform

ActionScript is an object-oriented programming language originally developed by Macromedia Inc.. It is influenced by HyperTalk, the scripting language for HyperCard. It is now an implementation of ECMAScript, though it originally arose as a sibling, both being influenced by HyperTalk. ActionScript code is usually converted to byte-code format by a compiler.

Web standards are the formal, non-proprietary standards and other technical specifications that define and describe aspects of the World Wide Web. In recent years, the term has been more frequently associated with the trend of endorsing a set of standardized best practices for building web sites, and a philosophy of web design and development that includes those methods.

<span class="mw-page-title-main">JSON</span> Open standard file format and data interchange

JSON is an open standard file format and data interchange format that uses human-readable text to store and transmit data objects consisting of attribute–value pairs and arrays. It is a commonly used data format with diverse uses in electronic data interchange, including that of web applications with servers.

C++/CLI is a variant of the C++ programming language, modified for Common Language Infrastructure. It has been part of Visual Studio 2005 and later, and provides interoperability with other .NET languages such as C#. Microsoft created C++/CLI to supersede Managed Extensions for C++. In December 2005, Ecma International published C++/CLI specifications as the ECMA-372 standard.

ECMAScript for XML (E4X) was the standard ISO/IEC 22537:2006 programming language extension that adds native XML support to ECMAScript. The goal was to provide an alternative to DOM interfaces that uses a simpler syntax for accessing XML documents. It also offered a new way of making XML visible. Before the release of E4X, XML was always accessed at an object level. E4X instead treated XML as a primitive. This implied faster access, better support, and acceptance as a building block of a program.

<span class="mw-page-title-main">C Sharp (programming language)</span> Programming language

C# is a general-purpose high-level programming language supporting multiple paradigms. C# encompasses static typing, strong typing, lexically scoped, imperative, declarative, functional, generic, object-oriented (class-based), and component-oriented programming disciplines.

<span class="mw-page-title-main">JavaScript syntax</span> Set of rules defining correctly structured programs

The syntax of JavaScript is the set of rules that define a correctly structured JavaScript program.

TypeScript is a free and open-source high-level programming language developed by Microsoft that adds static typing with optional type annotations to JavaScript. It is designed for the development of large applications and transpiles to JavaScript. Because TypeScript is a superset of JavaScript, all JavaScript programs are syntactically valid TypeScript, but they can fail to type-check for safety reasons.

The null coalescing operator is a binary operator that is part of the syntax for a basic conditional expression in several programming languages, such as : C# since version 2.0, Dart since version 1.12.0, PHP since version 7.0.0., Perl since version 5.10 as logical defined-or, PowerShell since 7.0.0, and Swift as nil-coalescing operator.

XPath is an expression language designed to support the query or transformation of XML documents. It was defined by the World Wide Web Consortium (W3C) in 1999, and can be used to compute values from the content of an XML document. Support for XPath exists in applications that support XML, such as web browsers, and many programming languages.

<span class="mw-page-title-main">Google Closure Tools</span> JavaScript developer toolkit

Google Closure Tools is a set of tools to help developers build rich web applications with JavaScript. It was developed by Google for use in their web applications such as Gmail, Google Docs and Google Maps. As of 2023, the project had over 230K LOCs not counting the embedded Mozilla Rhino compiler.

<span class="mw-page-title-main">Sputnik (JavaScript conformance test)</span> Conformity test for JavaScript implementations

Sputnik was a JavaScript conformance test suite. The purpose of the test suite was to determine how well a JavaScript implementation adheres to the ECMA-262 specification, 5th edition, looking only at those features that were also present in the 3rd edition. It contained over 5000 tests that touched all aspects of the JavaScript language.

Dart is a programming language designed by Lars Bak and Kasper Lund and developed by Google. It can be used to develop web and mobile apps as well as server and desktop applications.

Windows Runtime (WinRT) is a platform-agnostic component and application architecture first introduced in Windows 8 and Windows Server 2012 in 2012. It is implemented in C++ and officially supports development in C++, Rust/WinRT, Python/WinRT, JavaScript-TypeScript, and the managed code languages C# and Visual Basic (.NET) (VB.NET).

<span class="mw-page-title-main">Babel (transcompiler)</span> Backwards compatible JavaScript compiler

Babel is a free and open-source JavaScript transcompiler that is mainly used to convert ECMAScript 2015+ (ES6+) code into backwards-compatible JavaScript code that can be run by older JavaScript engines. It allows web developers to take advantage of the newest features of the language.

References

  1. "DevEdge Online – Online JavaScript Reference Manual". Archived from the original on 1997-06-14. Retrieved 2023-10-13.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  2. "JavaScript Reference". Archived from the original on 1999-04-20. Retrieved 2023-10-13.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  3. Archived at Ghostarchive and the Wayback Machine : "Changes to JavaScript, Part 1: EcmaScript 5". YouTube. 2009-05-18. Retrieved 2013-10-31.
  4. 1 2 "ECMAScript 2015 Language Specification". Ecma International. June 2015. Archived from the original on 2022-02-14. Retrieved 2021-06-28.
  5. 1 2 3 "ECMAScript 2016 Language Specification". Ecma International. June 2016. Archived from the original on 2022-02-14. Retrieved 2021-06-28.
  6. 1 2 3 "ECMAScript 2017 Language Specification". Ecma International. June 2017. Archived from the original on 2021-01-17. Retrieved 2021-06-28.
  7. 1 2 3 "ECMAScript 2018 Language Specification". Ecma International. June 2018. Archived from the original on 2022-02-14. Retrieved 2021-06-28.
  8. 1 2 3 "ECMAScript 2019 Language Specification". Ecma International. June 2019. Archived from the original on 2022-02-14. Retrieved 2021-06-28.
  9. 1 2 3 "ECMAScript 2020 Language Specification". Ecma International. June 2020. Archived from the original on 2021-01-18. Retrieved 2021-06-28.
  10. 1 2 "ECMAScript 2021 Language Specification". Ecma International. June 2021. Archived from the original on 2021-06-24. Retrieved 2021-06-26.
  11. 1 2 "Ecma-262".
  12. 2015-03-24 Meeting Notes Archived 2017-06-23 at the Wayback Machine . ESDiscuss. Also see Ecma withdrawn Standards Archived 2015-08-13 at the Wayback Machine . ECMA.
  13. Hansen, Lars T (2007-10-22). "ES4 overview paper released". mozilla.org. Mail.mozilla.org. Archived from the original on 2013-11-02. Retrieved 2013-10-31.
  14. Peyrott, Sebastian (2021-03-04). "The Real Story Behind ECMAScript 4". auth0.com. Archived from the original on 2020-05-12. Retrieved 2020-03-05.
  15. "Proposed ECMAScript 4th Edition – Language Overview" (PDF). ecmascript.org. 23 October 2007. Archived from the original (PDF) on 23 December 2010.
  16. John Resig. "John Resig – Bug Fixes in JavaScript 2". Ejohn.org. Archived from the original on 2013-11-02. Retrieved 2013-10-31.
  17. "Compatibility Between ES3 and Proposed ES4" (PDF). Ecmascript.org. Archived from the original (PDF) on 2014-07-24. Retrieved 2013-10-31.
  18. "ECMAScript Language Specification" (PDF). Ecma International. 2009-04-19. Archived from the original (PDF) on 2009-04-19. Retrieved 2018-03-19.
  19. "ECMAScript 3 and Beyond – IEBlog – Site Home – MSDN Blogs". Blogs.msdn.com. 2007-10-30. Archived from the original on 2010-02-11. Retrieved 2013-10-31.
  20. "What I think about ES4. – Albatross! – Site Home – MSDN Blogs". Blogs.msdn.com. 2007-10-31. Archived from the original on 2010-01-27. Retrieved 2013-10-31.
  21. "Open letter to Chris Wilson". Brendan Eich. 2007-10-31. Archived from the original on 2011-09-16. Retrieved 2013-10-31.
  22. "JavaScript 2 and the Open Web". 2007-11-20. Archived from the original on 2014-02-10. Retrieved 2014-01-20.
  23. "ECMAScript Harmony". Mail.mozilla.org. 13 August 2008. Archived from the original on 2013-08-26. Retrieved 2013-10-31.
  24. "A Major Milestone in JavaScript Standardization – JScript Blog – Site Home – MSDN Blogs". Blogs.msdn.com. 2009-04-09. Archived from the original on 2010-03-23. Retrieved 2013-10-31.
  25. "Ecma International finalises major revision of ECMAScript". Ecma International. 2009-04-09. Archived from the original on 2011-09-04. Retrieved 2009-05-22.
  26. "Ecma previous news". Ecma-international.org. Archived from the original on 2020-04-16. Retrieved 2020-03-29.
  27. JavaScript Versions from W3schools
  28. Krill, Paul. "It's official: ECMAScript 6 is approved". InfoWorld. Archived from the original on 2018-03-23. Retrieved 2018-03-19.
  29. "5 Great Features in EcmaScript 6 (ES6 Harmony) – Wintellect". Wintellect. 2014-03-24. Archived from the original on 2017-07-22. Retrieved 2018-03-19.
  30. "ECMAScript 6 (ES6): What's New In The Next Version Of JavaScript". Smashing Magazine. 2015-10-28. Archived from the original on 2017-11-24. Retrieved 2018-03-19.
  31. "ECMAScript 6: New Features: Overview and Comparison". es6-features.org. Archived from the original on 2018-03-18. Retrieved 2018-03-19.
  32. "Standard ECMA-262 6th Edition / June 2015 ECMAScript 2015 Language Specification 14.2 Arrow Function Definitions". www.ecma-international.org. 2015. Archived from the original on 2022-02-14. Retrieved 2021-06-28.
  33. Saboff, Michael (2016-05-23). "ECMAScript 6 Proper Tail Calls in WebKit". WebKit. Archived from the original on 2019-04-11. Retrieved 2019-04-11.
  34. "ECMAScript 2017 (ES8): the final feature set". 2ality. Archived from the original on 2018-04-23. Retrieved 2018-04-23.
  35. "ES2019: optional catch binding". 2ality.com. 2017-08-13. Retrieved 26 April 2022.
  36. "ECMAScript 2023 Language Specification". Ecma International . June 2023. Retrieved 2023-06-30.
  37. "ES.Next is the next edition of the ECMAScript Language Specification — Tuto Javascript". gdevops.gitlab.io. Retrieved 2023-07-05.

JavaScript 1.0

ISO standards

ECMA standards