Home  >  Article  >  Web Front-end  >  What programming language is js?

What programming language is js?

青灯夜游
青灯夜游Original
2019-05-05 10:22:0945575browse

The full name of js is JavaScript. It is a lightweight, literal, interpreted or just-in-time compiled high-level programming language with function priority. It is a high-level scripting language belonging to the Internet; JavaScript is based on prototype programming, A multi-paradigm dynamic scripting language that supports object-oriented, imperative and declarative programming, such as functional programming.

What programming language is js?

The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.

The full name of js is JavaScript. It is a lightweight, literal, interpreted or just-in-time compiled high-level programming language with function priority. Although it is famous as a scripting language for developing Web pages, it Also used in many non-browser environments, JavaScript is a dynamic scripting language based on prototype programming, multi-paradigm, and supports object-oriented, imperative and declarative (such as functional programming) styles.

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.

Components

  • ECMAScript, describes the syntax and basic objects of the language.

  • Document Object Model (DOM) describes the methods and interfaces for processing web content.

  • Browser Object Model (BOM) describes the methods and interfaces for interacting with the browser.

Basic characteristics of js

JavaScript is a scripting language that belongs to the Internet. It has been widely used in Web application development and is often used for Various dynamic functions are added to the web page to provide users with a smoother and more beautiful browsing effect. Usually JavaScript scripts realize their functions by embedding them in HTML.

1. JavaScript is an interpreted scripting language (the code is not precompiled).

2. JavaScript is mainly used to add interactive behaviors to HTML (an application under Standard Universal Markup Language) pages.

3. JavaScript can be directly embedded in HTML pages, but writing it as a separate js file is beneficial to the separation of structure and behavior.

4. JavaScript has cross-platform features and can run on multiple platforms (such as Windows, Linux, Mac, Android, iOS, etc.) with the support of most browsers.

Javascript scripting language, like other languages, has its own basic data types, expressions and arithmetic operators, and the basic program 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.

Recommended related video tutorials: "JavaScript Tutorial"

The above is the detailed content of What programming language is 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 vue frameworkNext article:what is vue framework