Home  >  Article  >  Web Front-end  >  What is the full name of js?

What is the full name of js?

青灯夜游
青灯夜游Original
2019-05-17 11:02:0511301browse

What is the full name of js?

js, the full name of JavaScript, is a literal scripting language. It is a dynamically typed, weakly typed, prototype-based language with built-in support for types.

The JavaScript interpreter is called the JavaScript engine. It is part of the browser and is widely used in client-side scripting languages. It was first used on HTML (an application under the Standard Universal Markup Language) web page. Add dynamic functions to HTML web pages.

JavaScript is a network scripting language that has been widely used in Web application development. It is often used to add various dynamic functions to web pages to provide users with smoother and more beautiful browsing effects. Usually JavaScript scripts realize their functions by embedding them in HTML.

has the following characteristics:

● It is an interpreted scripting language (the code is not pre-compiled).

● Mainly used to add interactive behaviors to HTML (an application under Standard Universal Markup Language) pages.

● It can be directly embedded into HTML pages, but writing it as a separate js file is conducive to the separation of structure and behavior.

● Cross-platform features, with the support of most browsers, can run on multiple platforms (such as Windows, Linux, Mac, Android, iOS, etc.)

Javascript script language Like other languages, it has its own basic data types, expressions and arithmetic operators and the basic programming framework of the program. Javascript provides four basic data types and two special data types for processing data and text. Variables provide a place to store information, and expressions can complete more complex information processing.

The above is the detailed content of What is the full name of js?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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
Previous article:What is json parsing?Next article:What is json parsing?