ECMAScript
dynamic | |
---|---|
Website | www |
Major implementations | |
JavaScript, ActionScript, JScript, QtScript, InScript, Google Apps Script | |
Influenced by | |
Self, HyperTalk, AWK, C, CoffeeScript, Perl, Python, Java, Scheme |
Filename extensions |
.es |
---|---|
Internet media type |
application/ecmascript |
Developed by | Sun Microsystems, Ecma International |
Initial release | June 1997 |
Latest release | Edition 15 June 2024 |
Type of format | Scripting language |
Website | Standards |
ECMAScript (/ˈɛkməskrɪpt/; ES)[1] 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.[2] It is standardized by Ecma International in the document ECMA-262.
ECMAScript is commonly used for
ECMAScript, ECMA-262, JavaScript
ECMA-262, or the ECMAScript Language Specification, defines the ECMAScript Language, or just ECMAScript.[6] ECMA-262 specifies only language syntax and the semantics of the core application programming interface (API), such as Array, Function, and globalThis, while valid implementations of JavaScript add their own functionality such as input/output and file system handling.
History
The ECMAScript specification is a standardized specification of a scripting language developed by
Evolution
Ecma's Technical Committee 39 (TC39) is responsible for the maintenance of ECMAScript.[12] New proposals to the language go through a staged process, with each stage representing the completeness of the proposal's specification. Consensus must be reached within the committee to advance a proposal to the next stage. Proposals that reach stage 4, the final stage, will be included into the next version of the standard.[13] Since the release of version 6 in June 2015, new major versions have been finalized and published every June.[14]
Features
This section needs expansion. You can help by adding to it. (February 2017) |
The ECMAScript language includes structured, dynamic, functional, and prototype-based features.[15]
Imperative and structured
ECMAScript JavaScript supports
Like C-style languages, control flow is done with the while
, for
, do
/ while
, if
/ else
, and switch
statements. Functions are weakly typed and may accept and return any type. Arguments not provided default to undefined
.
Weakly typed
ECMAScript is
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.[19]
Transpiling
Since ES 2015, transpiling JavaScript has become very common. Transpilation is a
Conformance
In 2010, Ecma International started developing a standards test for Ecma 262 ECMAScript.[20] Test262 is an ECMAScript conformance test suite that can be used to check how closely a JavaScript implementation follows the ECMAScript Specification. The test suite contains thousands of individual tests, each of which tests some specific requirement(s) of the ECMAScript specification. The development of Test262 is a project of the Ecma Technical Committee 39 (TC39). The testing framework and the individual tests are contributed to Ecma by member organizations of TC39.
Important contributions were made by Google (Sputnik test suite) and Microsoft, who both contributed thousands of tests. The Test262 test suite consisted of 38014 tests as of January 2020[update].[21] 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.
Scripting engine | Reference application(s) | Conformance[22] | |||
---|---|---|---|---|---|
ES5[23] | ES6 (2015)[24] | ES2016+[25] | Next[26][27] | ||
SpiderMonkey | Firefox 120 | 100% | 98% | 98% | 5% |
V8 | Google Chrome 117, Microsoft Edge 113, Opera 98 | 100% | 98% | 98% | 5% |
JavaScriptCore
|
Safari 17 | 99% | 100% | 98% | 11% |
See also
References
- ISBN 9781449396947. Archivedfrom the original on 2016-06-10. Retrieved 2016-01-12.
The core JavaScript programming language [...] is based on the ECMAScript standard, or ES for short.
- S2CID 219603695.
- ^ "Node.js — ECMAScript 2015 (ES6) and beyond".
- ^ "Deno joins JavaScript standards effort". 14 December 2021.
- ^ https://bun.sh/docs#:~:text=or%2C%20more%20formally%2C-,ECMAScript,-)%20is%20just%20a bun
- ^ Guo, Shu-yu (2022-02-14). "ECMAScriptÂŽ 2022 Language Specification". tc39.es. Archived from the original on 2020-05-08. Retrieved 2022-02-14.
- ^ Krill, Paul (2008-06-23). "JavaScript creator ponders past, future". infoworld.com. InfoWorld. Archived from the original on 2014-09-20. Retrieved 2013-10-31.
- ^ "Netscape and Sun announce JavaScript, the Open, Cross-platform Object Scripting Language for Enterprise Networks and the Internet". Netscape.com. Netscape. 1995-12-04. Archived from the original on 2002-06-06. Retrieved 2019-11-04.
- ^ Press Release (November 15, 1996). "Industry Leaders to Advance Standardization of Netscape's JavaScript at Standards Body Meeting". Netscape.com. Netscape. Archived from the original on 1998-12-03. Retrieved 2013-10-31.
- ^ Eich, Brendan (2006-10-03). "Will there be a suggested file suffix for es4?". mozilla.org. Mail.mozilla.org. Archived from the original on 2020-06-21. Retrieved 2021-05-05.
- ^ Maffeis, Sergio; Mitchell, John C.; Taly, Ankur (2020-01-03). "An Operational Semantics for JavaScript" (PDF). stanford.edu. Association for Computing Machinery. Archived (PDF) from the original on 2020-01-03. Retrieved 2020-01-03.
- ^ "TC39", Technical Committees, Ecma International, retrieved 2024-08-11
- ^ "The TC39 Process", TC39, Ecma International, retrieved 2024-08-11
- ^ "ECMAScript, TC39, and the History of JavaScript", ui.dev, retrieved 2024-08-11
- ^ "About". ECMAScript. Archived from the original on 2012-08-02. Retrieved 2009-12-17.
- ISBN 978-0-596-55447-7. Archivedfrom the original on 1 August 2020. Retrieved 11 November 2019.
- ^ Bernhardt, Gary. Wat. CodeMash 2012. Destroy All Software. Archived from the original on 2019-10-28. Retrieved 2021-08-18.
- ^ Gilbertson, Scott (26 January 2012). "Jokes for Nerds: Wat Moments in Programming". Wired. Archived from the original on 23 August 2020. Retrieved 22 August 2021.
- ^ "JavaScript data types and data structures – JavaScript | MDN". Developer.mozilla.org. 2017-02-16. Archived from the original on 2017-03-14. Retrieved 2017-02-24.
- ^ "ECMAScript Language – test262". Test262.ecmascript.org. Archived from the original on 2011-05-14. Retrieved 2013-10-31.
- ^ "tc39/test262". GitHub. January 24, 2020. Archived from the original on October 1, 2019. Retrieved January 29, 2020.
- ^ ES5 is the baseline for this test suite. The conformance rate for other editions reflects support for new features only, not a comprehensive score.
- ^ "ECMAScript 5 compatibility table". compat-table.github.io. 2024-04-14. Archived from the original on 2024-01-14. Retrieved 2024-04-14.
- ^ "ECMAScript 6 compatibility table". compat-table.github.io. 2024-04-14. Archived from the original on 2024-04-04. Retrieved 2024-04-14.
- ^ "ECMAScript 2016+ compatibility table". compat-table.github.io. 2024-04-14. Archived from the original on 2024-01-14. Retrieved 2024-04-14.
- ^ "ECMAScript Next compatibility table". compat-table.github.io. 2024-04-14. Archived from the original on 2024-01-14. Retrieved 2024-04-14.
- ^ Composite score that includes new features from ES7 through next edition drafts