In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-20 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
Most people do not understand the knowledge points of this "ecmascript is a language" article, so the editor summarizes the following content, detailed content, clear steps, and has a certain reference value. I hope you can get something after reading this article. Let's take a look at this "ecmascript is not a language" article.
Ecmascript is a language. Ecmascript is an object-based programming language that can perform calculations in a host environment and manipulate computable objects. It can be used to support the dynamic presentation of Web pages and to provide server-side computing power for Web-based client-server architecture.
The operating environment of this tutorial: windows7 system, ECMAScript version 6, Dell G3 computer.
Ecmascript is a language.
ECMAScript is a standard specification for a scripting language developed by Brandon Archie of Netscape; it was originally named Mocha, later renamed LiveScript, and finally renamed JavaScript. In December 1995, Sunshine and Netscape jointly released JavaScript. In November 1996, Netscape submitted JavaScript to the European Association of computer Manufacturers for standardization. The first version of ECMA-262 was adopted by Ecma in June 1997. ECMA Script is the name of ECMA-262 's standardized scripting language. Although JavaScript and JScript are compatible with ECMAScript, they contain features that go beyond ECMAScript.
ECMAScript is an object-based programming language that can perform calculations in a host environment and manipulate computable objects. ECMAScript was originally designed as a Web scripting language to support the dynamic presentation of Web pages and to provide server-side computing power for Web-based client-server architectures. But as a scripting language, ECMAScript has the same nature as other scripting languages, that is, it is "used to manipulate, customize, and automate the functions provided by an existing system."
Features of ECMAScript:
There are many similarities between the language features of ECMAScript and Java, C, Perl, many of which are borrowed from these languages.
Like Java, ECMAScript is case-sensitive, comments are in the same format, code blocks are determined by {}, raw data types are stored on the stack, and references to objects are stored in the heap.
ECMAScript is a loose language, ECMAScript declares variables through the var operator, and there are no restrictions on the type, for example, var n = 25, then n is the numeric type, var n = "string", then n is the String type.
After each line of code, you don't have to write a semicolon, and ECMAScript automatically thinks that the end of the line is the end of the line; variables in ECMAScript can be initialized without initialization, and the system will automatically complete the initialization operation behind the scenes.
The same variable can be assigned different types of data; the first character of a variable can only be a letter, underscore, or $, and the other characters can be an underscore, $, or any letter, number, or character.
As with other languages, variables are best written in humps, or Pascal notation, or Hungarian notation.
Unlike most languages, the ECMAScript variable does not have to be declared before it is used, and the system automatically declares it as a global variable, such as
Var m = "Good"; n = m + "Morning"; alert (n)
The output structure is
Good Morning
In most languages, String is an object, but in ECMAScript it is the original data type.
The above is about the content of this article on whether ecmascript is a language or not. I believe we all have a certain understanding. I hope the content shared by the editor will be helpful to you. If you want to know more about the relevant knowledge, please follow the industry information channel.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.