Home Web Front-end JS Tutorial Detailed introduction to how JavaScript works

Detailed introduction to how JavaScript works

Jan 15, 2019 am 11:26 AM
javascript

This article brings you a detailed introduction to the operating principles of JavaScript. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

JavaScript Operation Principle

Know what it is and why it is so. Here we mainly talk about the understanding of JavaScript operation principle.

JAVA Virtual Machine

First of all, let’s start with the JAVA virtual machine.

First of all, let’s talk about why it is necessary to make a virtual machine, because the machines are different. Without a virtual machine, we would need to compile the code for each machine, which is definitely unreasonable. Therefore, in order to solve this problem, Java introduces the concept of virtual machine (VM), allowing the compiled code to run directly on a virtual machine. No matter what the final target platform is, a virtual consistent one is built on it. Once the virtual machine comes out, you can achieve the effect of compiling once and executing it everywhere.

Fundamentally speaking, Java and C# are not Native languages. The compiled result is not a machine instruction, but a certain own instruction format. It cannot be run by itself and requires a special program to interpret and execute it. This program is What we call a "virtual machine".

On the contrary, languages ​​like C, C, Go, and Rust are Native languages. The compiled results are machine instructions, which can be run directly by themselves. There is no concept of "virtual machine".

JavaScript Engine

The work done by the JavaScript engine is very similar to the JAVA virtual machine

What does it do

The JS engine mainly performs lexical, grammatical and other analysis on the JS code, and compiles the code into executable machine code through a compiler for the computer to execute.

Simply put, its only purpose is to read and compile JavaScript code, which means it can analyze, interpret, optimize, and garbage collect JavaScript code.

Execution process

The JavaScript engine will load the source code, decompose it into strings (also called word segmentation), and then convert these strings into things that the compiler can understand. bytecodes and then execute those bytecodes.

Google's V8 engine is written in C. It can also compile and execute JavaScript source code, handle memory allocation and garbage collection. It is designed to consist of two compilers, which can directly compile source code into machine code. The specific execution process can be seen as the following steps:

  1. It performs lexical analysis, that is, Source code is broken down into a series of symbols or strings with clear meaning.

  2. Then use a syntax analyzer to analyze these symbols and build them into a syntax tree.

  3. Then four JIT (Just-In-Time) processes begin to participate, analyzing and executing the bytecode generated by the parser.

Relationship with ECMAScript

To be precise, each JavaScript engine implements a version of ECMAScript, and JavaScript is a branch of it . As ECMAScript continues to evolve, the JavaScript engine continues to improve. The reason there are so many different engines is because each of them is designed to run in a different web browser, headless browser, or runtime environment like Node.js.

The JavaScript engine is a program, and the JavaScript code we write is also a program. How to make the program understand the program? This requires defining rules. For example:

var a = 1 + 1
Copy after login

The var on the left represents a declaration, which declares the variable a
The one on the right represents the addition of 1 and 1
The equal sign in the middle represents that this is a The semicolon at the end of the assignment statement
indicates the end of the statement
These are the rules. With it, there is a standard for measurement. The JavaScript engine can parse the JavaScript code according to this standard. Then the ECMAScript here defines these rules. Among them, the document ECMAScript 62 defines a complete set of standards for the JavaScript language. These include:

var, if, else, break, continue, etc. are JavaScript keywords
abstract, int, long, etc. are JavaScript reserved words
How to count it as a number and how to count it as a string etc.
defines operators ( , -, >, <, etc.)
defines JavaScript syntax
defines standard processing algorithms for expressions, statements, etc., such as when encountering == How to handle
The standard JavaScript engine will be implemented according to this set of documents. Note that the standard is emphasized here, because there are also implementations that do not follow the standard, such as IE's JS engine. This is why JavaScript has compatibility issues. As for why IE's JS engine is not implemented in accordance with standards, it comes to the browser war. I won't go into details here. Google it yourself.

So, to put it simply, ECMAScript defines the standard of the language, and the JavaScript engine implements it according to it. This is the relationship between the two.

RunTime

Runtime can be simply understood as the current running environment. Different environments provide different api calls, such as the window object in the web browser, DOM Related APIs, etc., these interfaces can provide related JS calls

The above is the detailed content of Detailed introduction to how JavaScript works. For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

JavaScript and WebSocket: Building an efficient real-time image processing system JavaScript and WebSocket: Building an efficient real-time image processing system Dec 17, 2023 am 08:41 AM

JavaScript is a programming language widely used in web development, while WebSocket is a network protocol used for real-time communication. Combining the powerful functions of the two, we can create an efficient real-time image processing system. This article will introduce how to implement this system using JavaScript and WebSocket, and provide specific code examples. First, we need to clarify the requirements and goals of the real-time image processing system. Suppose we have a camera device that can collect real-time image data

See all articles