Sponsored Links
-->

Rabu, 21 Februari 2018

ECMAScript 6 / ES6 New Features - Tutorial 1 - Let - YouTube
src: i.ytimg.com

ECMAScript (or ES) is a trademarked scripting-language specification standardized by Ecma International in ECMA-262 and ISO/IEC 16262. It was created to standardize JavaScript, so as to foster multiple independent implementations. JavaScript has remained the best-known implementation of ECMAScript since the standard was first published, with other well-known implementations including JScript and ActionScript. Coders commonly use ECMAScript for client-side scripting on the World Wide Web, and it is increasingly being used for writing server applications and services using Node.js.


Video 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 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. 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. 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."

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 eight editions of ECMA-262 published. Work on version 8 of the standard was finalized in June 2017.

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.

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. 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

  • classes,
  • a module system,
  • optional type annotations and static typing, probably using a structural type system,
  • generators and iterators,
  • destructuring assignment, and
  • algebraic data types.

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. 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 (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," 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 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.

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. 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, officially known as ECMAScript 2015, was finalized in June 2015. This update 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). The complete list is extensive.

Browser support for ES2015 is still incomplete. However, ES2015 code can be transpiled into ES5 code, which has more consistent support across browsers. Transpiling adds an extra step to build processes whereas polyfills allow adding extra functionalities by including another JavaScript file.

7th Edition - ECMAScript 2016

The 7th edition, officially known as ECMAScript 2016, was finalized in June 2016. New features include the exponentiation operator (**), Array.prototype.includes (not to be confused with ClassList.contains).

8th Edition - ECMAScript 2017

The 8th edition, officially known as ECMAScript 2017, was finalized in June 2017. Includes await/async, which works using generators and promises.

ES.Next

ES.Next is a dynamic name that refers to whatever the next version is at time of writing. ES.Next features are more correctly called proposals, because, by definition, the specification has not been finalized yet.


Maps ECMAScript



Features

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


ES 6: Tutorial 1 - What is ECMAScript 6 and ES6 browser support ...
src: i.ytimg.com


Syntax


Visual Studio Code 0.5.0 Adds Support for ECMAScript 6
src: i1-news.softpedia-static.com


Implementations

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.


Tutoriel Javascript : ECMAScript 2015 - YouTube
src: i.ytimg.com


Version correspondence

Items on the same line are approximately the same language.


Native ECMAScript modules in the browser
src: pawelgrzybek.com


Conformance tests

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.

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 as of 2013.


ECMAScript 6 / ES6 New Features - Tutorial 7 - Generators - YouTube
src: i.ytimg.com


See also

  • ActionScript
  • Comparison of layout engines (ECMAScript)
  • Dart (programming language)
  • Document Object Model (DOM)
  • ECMAScript for XML (E4X)
  • JavaScript
  • JScript
  • List of ECMAScript engines
  • Qt Meta (or Modeling) Language (QML)
  • Server-side JavaScript
  • TypeScript
  • Gulp.js

Learn ES6 (ECMAScript 2015) from @johnlindquist on @eggheadio
src: dcv19h61vib2d.cloudfront.net


References


ECMAScript 6 / ES6 New Features - Tutorial 5 - Classes - YouTube
src: i.ytimg.com


External links

  • Official website
  • The World of ECMAScript: John Resig's map on ECMAScript
ISO Standard
  • ISO 16262
Ecma Standards
  • ECMA-262
    • ECMA-262 ECMAScript Language Specification 3rd edition (December 1999)
    • ECMAScript Language Specification, Edition 3 Final, 24-Mar-00
    • ECMA-262 ECMAScript Language Specification 5th edition (December 2009)
    • ECMA-262 ECMAScript Language Specification 5.1 edition (June 2011)
  • ECMA-290 ECMAScript Components Specification (June 1999)
  • ECMA-327 ECMAScript 3rd Edition Compact Profile (June 2001)
  • ECMA-357 ECMAScript for XML (E4X) Specification (June 2004)

Source of article : Wikipedia