ECMAScript

From The Hidden Wiki
Jump to navigationJump to search

Template:Infobox programming language Template:Infobox file format Template:JavaScriptSidebar

ECMAScript (or ES)<ref> Template:Cite book </ref> is a trademarked<ref>Template:Cite web</ref> scripting-language specification standardized by Ecma International in ECMA-262 and ISO/IEC 16262. Well-known implementations of the language, such as JavaScript, JScript and ActionScript have come into wide use for client-side scripting on the Web.

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.<ref>Template:Cite web</ref> In December 1995, Sun Microsystems and Netscape announced JavaScript in a press release.<ref>Template:Cite web</ref> In March 1996, Netscape Navigator 2.0 was released, featuring support for JavaScript.

Owing to the widespread success of JavaScript as a client-side scripting language for Web pages, Microsoft developed a compatible dialect of the language, naming it JScript to avoid trademark issues. JScript added new date methods to alleviate the Year 2000 problem caused by the JavaScript methods that were based on the Java Date class.<ref>Template:Cite web</ref> JScript was included in Internet Explorer 3.0, released in August 1996.

Netscape delivered JavaScript to Ecma International for standardization and the work on the specification, ECMA-262, began in November 1996.<ref>Template:Cite web</ref> The first edition of ECMA-262 was adopted by the Ecma General Assembly of 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."<ref>Template:Cite web</ref>

While both JavaScript and JScript aim to be compatible with ECMAScript, they also provide additional features not described in the ECMA specifications.<ref>Template:Cite web</ref>

Versions

There are six editions of ECMA-262 published. Work on version 6 of the standard, codenamed "Harmony", was finalized in June 2015.<ref name="auto">[1]. EMCAScript. Retrieved on 2015-06-19.</ref>

Edition Date published Changes from prior edition Editor
1 June 1997 First edition Guy L. Steele, Jr.
2 June 1998 Editorial changes to keep the specification fully aligned with ISO/IEC 16262 international standard Mike Cowlishaw
3 December 1999 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
4 Abandoned Fourth Edition was abandoned, due to political differences concerning language complexity. Many features proposed for the Fourth Edition have been completely dropped; some are proposed for ECMAScript Harmony.
5 December 2009 Adds "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.<ref>Template:Cite web</ref> Pratap Lakshman, Allen Wirfs-Brock
5.1 June 2011 This 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
6 June 2015<ref>https://www.infoworld.com/article/2937716/javascript/its-official-ecmascript-6-is-approved.html</ref> The Sixth Edition, known as ECMAScript 2015,<ref>https://www.ecma-international.org/ecma-262/6.0/</ref> adds significant new syntax for writing complex applications, including classes and modules, 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 and generator expressions, arrow functions, binary data, typed arrays, collections (maps, sets and weak maps), promises, number and math enhancements, reflection, and proxies (metaprogramming for virtual objects and wrappers). As the first “ECMAScript Harmony” specification, it is also known as “ES6 Harmony”. Allen Wirfs-Brock
7 Work in progress The Seventh Edition is in a very early stage of development, but is intended to continue the themes of language reform, code isolation, control of effects and library/tool enabling from ES6. New features proposed include concurrency and atomics, zero-copy binary data transfer, more number and math enhancements, syntactic integration with promises, observable streams, SIMD types, better metaprogramming with classes, class and instance properties, operator overloading, value types (first-class primitive-like objects), records and tuples, and traits.<ref>Template:Cite web</ref><ref>Template:Cite web</ref>

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-*****, or ECMA 327 – that was designed for resource-constrained devices, which was withdrawn in 2015.<ref name="ES-*****-withdrawn">2015-03-24 Meeting Notes. ESDiscuss. Also see Ecma withdrawn Standards. ECMA.</ref>

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.<ref>Template:Cite web</ref> An overview of the language was released by the working group on October 23, 2007.<ref>Template:Cite web</ref>

As of August 2008, the ECMAScript 4th edition proposal has been scaled back into a project codenamed ECMAScript Harmony. Features under discussion for Harmony include:

The intent of these features is 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.<ref>Template:Cite web</ref><ref>Template:Cite web</ref> These fixes and others, and support for JSON encoding/decoding, have been folded into the ECMAScript, 5th Edition specification.<ref>https://web.archive.org/web/20090419044026/https://www.ecma-international.org/publications/files/drafts/tc39-2009-025.pdf</ref>

Work started on Edition 4 after the ES-***** (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,"<ref>Template:Cite web</ref> and that stakeholders who opposed the changes were being "hidden from view".<ref>Template:Cite web</ref> 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.<ref>Template:Cite web</ref> He also 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.<ref>Template:Cite web</ref>

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 (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.<ref>Template:Cite web</ref><ref>Template:Cite web</ref> 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.<ref>Template:Cite web</ref> On December 3, 2009, ECMA-262 5th edition was published.<ref>Template:Cite web</ref>

Template:Anchor

6th Edition

ECMAScript 6 (ES6) was finalized in June 2015.<ref name="auto"/><ref>Standard ECMA - 262 6th Edition / June 2015, ECMAScript ® 2015 Language Specification</ref> The Sixth Edition adds significant new syntax for writing complex applications, including classes and modules, 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 and generator expressions, arrow functions, binary data, typed arrays, collections (maps, sets and weak maps), promises, number and math enhancements, reflection, and proxies (metaprogramming for virtual objects and wrappers).<ref> https://www.wintellect.com/devcenter/nstieglitz/5-great-features-in-es6-harmony </ref><ref> https://www.smashingmagazine.com/2015/10/es6-whats-new-next-version-javascript/ </ref> The complete list is extensive.<ref> https://es6-features.org/#Constants </ref>

Browser support for ES6 is still incomplete.<ref> https://kangax.github.io/compat-table/es6/ </ref>

Features

Template:Main The ECMAScript language includes structured, dynamic, functional, and prototype-based features.<ref>Template:Cite web</ref>

Syntax

Template:Main

Implementations

Template:Main

ECMAScript is supported in many applications, especially Web browsers, where it is implemented by JavaScript, or, in the case of Internet Explorer, JScript. Implementations sometimes include extensions to the language, or to the standard library and related application programming interfaces (API) such as the World Wide Web Consortium (W3C) specified Document Object Model (DOM). This means that applications written in one implementation may be incompatible with another, unless they are written to use only a common subset of supported features and APIs.

Implementation Applications ECMAScript edition
SpiderMonkey Firefox, the Gecko layout engine, Adobe Acrobat<ref group="d">Adobe Acrobat 9.0 uses the SpiderMonkey 1.7 engine: JavaScript for Acrobat API Reference</ref> ECMA-262, edition 5.1, and features from 6 and upcoming 7<ref group="d">SpiderMonkey already supports a wide range of upcoming features: ECMAScript 6 support in Mozilla and ECMAScript 7 support in Mozilla</ref>
V8 Google Chrome, Node.js, Opera ECMA-262, edition 5.1, and features from 6<ref group="d">V8, the JavaScript engine created by Google and used in Chrome, implements ECMAScript as specified in ECMA-262, 5th edition: V8 JavaScript Engine.</ref><ref group="d">Chrome also implements non-ECMAScript-standard extensions to the language that are present in WebKit, in order to maintain compatibility with JavaScriptCore : V8 JavaScript Engine issue tracker.</ref>
JavaScriptCore (Nitro) WebKit, Safari, Qt 5 ECMA-262, edition 5.1, and features from 6<ref group="d">ECMAScript 6 Enhancements</ref>
JScript 9.0 Internet Explorer, the Trident layout engine ECMA-262, edition 5.1
Nashorn Java ECMA-262, edition 5.1<ref group="d">Full ECMAScript 5.1 support in Opera 11.51+[2].</ref>
Rhino Java Platform, Standard Edition ECMA-262, edition 3
Carakan (deprecated) Opera 12 ECMA-262, edition 5<ref group="d">Full ECMAScript 5.1 support in Opera 11.51+[3].</ref><ref group="d">Opera's implementation includes some JavaScript and JScript extensions: ECMAScript support in Opera Presto 2.3</ref>
RemObjects Script for .NET ECMA-262, edition 5
KJS KHTML ECMA-262, edition 5.1<ref group="d">Template:Cite web</ref> and features from 6<ref group="d">Commits marked with ES6 are implementations of ES6 features: https://quickgit.kde.org/?p=kjs.git&a=shortlog</ref>
Ejscript Appweb Web Server, Samba 4 ECMA-262, edition 3<ref group="d">This implementation asserts to support some extensions proposed in drafts of ECMAScript edition 4 (and now ECMAScript Harmony): Ejscript Overview.</ref>
JScript .NET Microsoft .NET Framework ECMA-262, edition 3<ref group="d">Microsoft asserts that JScript 8.0 supports "almost all of the features of the ECMAScript Edition 3 Language Specification", but does not list the unsupported features.</ref>
ActionScript Adobe Flash, Adobe Flex, Adobe AIR ECMA-262, edition 4<ref group="d">Completely conforming implementation of the ECMAScript fourth edition draft specification: ActionScript</ref><ref group="d">In addition to supporting ECMA-262 edition 3, ActionScript 3 also included support for extensions proposed in drafts of ECMAScript edition 4: The Kiwi Project: AS3 language 101 for C/C++ coders.</ref>
Adobe ExtendScript Adobe Creative Suite products: InDesign, Illustrator, Photoshop,
Bridge, After Effects, Premiere Pro
ECMA-262, edition 3 Template:Citation needed
DMDScript ECMA-262
CriScript ECMA-262, edition 3
InScript iCab ECMA-262, edition 3
Max/MSP engine Max/MSP ECMA-262, edition 3
Galio engine Galio ECMA-262, edition 3
QtScript (deprecated) KDE SC 4 ECMA-262, edition 3
Caja ECMA-262, edition 3<ref group="d">Caja emulates strict mode as specified in the ECMAScript edition 5 draft.</ref>
Chakra Microsoft Edge ECMA-262, edition 5.1, and features from 6<ref group="d">Microsoft states that Edge "supports most ES2015 features," supporting 81% of the specification as of May 2015 and 67% as of September 2015. [4][5]</ref>
1 }}
     | references-column-width 
     | references-column-count references-column-count-{{#if:1|{{{1}}}}} }}
   | {{#if: 
     | references-column-width }} }}" style="{{#if: 
   | {{#iferror: {{#ifexpr: 1 > 1 }}
     | Template:Column-width
     | Template:Column-count }}
   | {{#if: 
     | Template:Column-width }} }} list-style-type: {{#switch: "d"
   | upper-alpha
   | upper-roman
   | lower-alpha
   | lower-greek
   | lower-roman = "d"
   | #default = decimal}};">
<references group="d"></references>

Version correspondence

The following table is based on tedster's history compilation forum post<ref>Template:Cite web</ref> and Microsoft's JScript version information Webpage.<ref>Template:Cite web</ref> Items on the same line are approximately the same language.

JavaScript JScript ECMAScript
1.0 (Netscape 2.0, March 1996) 1.0 (IE 3.0 – early versions, August 1996)
1.1 (Netscape 3.0, August 1996) 2.0 (IE 3.0 – later versions, January 1997)
1.2 (Netscape 4.0-4.05, June 1997)
1.3 (Netscape 4.06-4.7x, October 1998) 3.0 (IE 4.0, Oct 1997) Edition 1 (June 1997) / Edition 2 (June 1998)
1.4 (Netscape Server only) 4.0 (Visual Studio 6, no IE release)
5.0 (IE 5.0, March 1999)
5.1 (IE 5.01)
1.5 (Netscape 6.0, Nov 2000; also
later Netscape and Mozilla releases)
5.5 (IE 5.5, July 2000) Edition 3 (December 1999)
5.6 (IE 6.0, October 2001)
1.6 (Gecko 1.8, Firefox 1.5, November 2005) Edition 3, with some compliant enhancements: ECMAScript for XML (E4X), Array extras (e.g. Array.prototype.forEach), Array and String generics (New in JavaScript 1.6)
1.7 (Gecko 1.8.1, Firefox 2, October 2006) Edition 3 plus all JavaScript 1.6 enhancements, plus Pythonic generators and array comprehensions ([a*a for (a in iter)]), block scope with let, destructuring assignment (var [a,b]=[1,2]) (New in JavaScript 1.7)
1.8 (Gecko 1.9, Firefox 3, June 2008) Edition 3 plus all JavaScript 1.7 enhancements, plus expression closures (function(x) x * x), generator expressions, and more (New in JavaScript 1.8)
JScript .NET (ASP.NET; no IE release) (JScript .NET is said to have been designed with the participation of other Ecma members)<ref>Template:Cite web</ref>
JavaScript 2.0 (Work in progress) Harmony (Work in progress; see the section "ECMAScript Harmony").

Conformance tests

In 2010, Ecma International started developing a standards test for Ecma 262 ECMAScript.<ref>Template:Cite web</ref> 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.

Development of test262 is a project of Ecma Technical Committee 39 (TC39). 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 (Sputnik testsuite) and Microsoft who both contributed thousands of tests. The Test262 testsuite already contains more than 11,000 tests and is being developed further Template:As of.

The following table shows current conformance results of browser products. Lower scores are better, although scores can not be compared, as tests are not weighted. Also, be aware that Test262 itself is likely to contain bugs that may impact a browser's score. So browsers with a score significantly lower than the current test suite bug count may not necessarily do better than those with a higher one.<ref>Template:Cite web</ref> That may be particularly true when several browsers have a higher score in their current development builds as compared to their last released version.

Template:ECMAScript test262

See also

References

1 }}
     | references-column-width 
     | references-column-count references-column-count-{{#if:1|{{{1}}}}} }}
   | {{#if: 30em
     | references-column-width }} }}" style="{{#if: 
   | {{#iferror: {{#ifexpr: 1 > 1 }}
     | Template:Column-width
     | Template:Column-count }}
   | {{#if: 30em
     | Template:Column-width }} }} list-style-type: {{#switch: 
   | upper-alpha
   | upper-roman
   | lower-alpha
   | lower-greek
   | lower-roman = {{{group}}}
   | #default = decimal}};">
<references group=""></references>

External links

ISO Standard
Ecma Standards


Template:Web browser engines Template:ECMAScript Template:Ecma International Standards Template:ISO standards