Home > Web Front-end > JS Tutorial > body text

The relationship between JavaScript and ECMAScript

WBOY
Release: 2022-08-09 15:42:47
forward
1824 people have browsed it

This article brings you relevant knowledge about javascript, which mainly introduces related issues about the relationship between JavaScript and ECMAScript. ECMAScript is also a scripting language, abbreviated as ES, usually As a standardized specification of JavaScript, let’s take a look at it below. I hope it will be helpful to everyone.

The relationship between JavaScript and ECMAScript

[Related recommendations: javascript video tutorial, web front-end

1. JavaScript is ECMAScript Extension language

ECMAScript is also a scripting language, abbreviated as ES, which is usually regarded as the standardized specification of JavaScript.

But in fact JavaScript is an extension language of ECMAScript, because ECMAScript only provides the most basic syntax. In layman's terms, it just agrees on how to write our code, such as defining variables and functions, loops and branches... it just Staying at the language level cannot be used to complete the actual functional development of our applications.

JavaScript implements the ECMAScript language standard and makes some extensions on this basis, allowing us to operate DOM and BOM in the browser environment, and read and write files in the node environment. operate.

In the browser environment, JavaScript = ECMAScript BOM DOM

The relationship between JavaScript and ECMAScript
In the node environment, JavaScript = ECMAScript Node APIs

The relationship between JavaScript and ECMAScript

So, the language itself in JavaScript refers to ECMAScript.

2. The development process of ECMAScript

The relationship between JavaScript and ECMAScript
ECMAScript2015 is worth taking out and understanding separately

Because ES2015 has been too long since the previous version. The release of too much content resulted in this version including many disruptive new features.

It is worth noting that ES2015 starts to be named according to the year and no longer named according to the version number.

With the rapid development of the web, starting from 2015, ES has maintained a version iteration every year.

Extended summary

In November 1996, Netscape, the creator of JavaScript, decided to hand over JavaScript to ECMA, the international standardization organization, hoping that this language could become an international standard. The following year, ECMA released the first version of Standard Document 262 (ECMA-262), which specified the standard for browser scripting languages ​​and called this language ECMAScript.

This standard has been developed for the JavaScript language from the beginning, but it is not called JavaScript for the following two reasons: First, it is a trademark. Java is a registered trademark of Sun. According to the licensing agreement, only Netscape can legally use the name JavaScript, and JavaScript itself has been registered as a trademark by Netscape. The second is to show that the developer of this language is ECMA, not Netscape, which will help ensure the openness and neutrality of this language.

The relationship between the two can be summarized as: ECMAScript is the specification of JavaScript, and JavaScript is the implementation of ECMAScript. (ECMAScript also has dialect names JScript and ActionScript)

[Related recommendations: javascript video tutorial, web front-end]

The above is the detailed content of The relationship between JavaScript and ECMAScript. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!