search
HomeWeb Front-endJS TutorialDetailed explanation of js compiled language and interpreted language

Detailed explanation of js compiled language and interpreted language

Mar 17, 2018 pm 05:02 PM
javascriptexplainDetailed explanation

This article mainly shares with you the basic knowledge of js-compiled language and interpreted language. I hope it can help everyone.

1. Primitive type and reference type 1. The difference between compiled language and interpreted language

Compiled language: Compile a file first, and the program will automatically execute this document.

Advantages: Fast;

Disadvantages: Not cross-platform.

The server requires strong stability. Linux system is used, and most clients use Windows, which causes cross-platform problems. Compiled files generated by compiled languages ​​cannot be executed on multiple platforms at the same time.

Interpreted language: Compile one sentence and execute one sentence. There is no compilation file. It is equivalent to directly compiling into 1010 machine language and then executing it.

Advantages: cross-platform;

Disadvantages: slightly slow.

Note: Java is neither a compiled language nor an interpreted language in the strict sense. After the file is compiled, the Java virtual machine interprets and executes it, making Java cross-platform.

2. The js engine is single-threaded-----can only do one thing at the same time

Asynchronous--multiple things are executed at the same time; synchronous--wait for one thing Once one thing is done, do another.

Rotation time slice: js seems to be executing two animations at the same time. In fact, js divides the process of the two animations into countless sparse time slices to form a stack. Each time one of them is executed, the content is There is no order of priority for grabbing time slices, the order is random. Then the animation is executed in the order of the stack, and it seems that both of them are moving.

3. Mainstream browsers----shell and kernel

IE----trident; Chrome-----webkit/blink; firefox---Gecko; safari-- --webkit; Opera---presto

4. Basic js knowledge points

a Variable names can be composed of $ _ English numbers, but the first letter can only be $ _ English, and another The name avoids words with special meanings while taking into account semantics.

b Original value: null undefined string number boolean; Reference value: object array function (actually the object type)

Original value---assignment is equivalent to giving a copy and placing it in a new In a variable, if you assign a value to an already assigned variable again, the index relationship between the variable and the original value will actually be cut off in the memory, and a new place in the memory will be opened to index the variable name, and the value will be the new value. . ps. Until the memory prompts that it is full, you clear some things, and then save things again, the original place will be overwritten.

var num = 1;
var num1 = num;
num = 2;
console.log(num,num1); //2,1。。。。但是这个num已经不是原来的num了

Reference value---is equivalent to the index value in the stack being the variable name, the value being the address where the real value is stored in the heap, the index in the heap being the address, and the value being the really needed value, so When assigning a variable, it is equivalent to assigning the value in the stack (address---heap index) to a new variable, causing both variables to point to the same address at the same time. Then changing the content in this address will cause the two variables to be values ​​are changed. ps If you assign a value to a variable (a new reference value or original value), the other variable will not change. It is equivalent to opening a new space in the heap and giving the address to the variable. The address of the other variable will still remain unchanged.

var arr=[1,2];
var arr1=arr;
arr.push(3);//改变同一个地址的arr的内容,两个变量都会改变
console.log(arr,arr1);//[1,2,3],[1,2,3]
arr=[1];//给arr重新赋值了一个地址,arr1的地址不会发生改变,还是原来的地址
console.log(arr,arr1)//[1],[1,2,3]

You can see the picture for details. The original value assignment is to copy a copy to another variable. The reference value is to copy the address to another variable. Modifying the content in this address will cause the values ​​of both variables to change. Reassigning the reference value is equivalent to re-opening a piece of content on the stack and then giving a new address. No It affects another element, and the original memory location is actually still occupied, but it is changed back to the default index and cannot be found.

Detailed explanation of js compiled language and interpreted language

c : 1/0----Infinity (Number type) 0/0---NaN (Number type)

d : ++ a executes a+1 before the current statement, and a++ executes a+1 after the current statement is executed. That is, (++a) is equal to a, which is equal to (a+1), (a++) is equal to the original value of a, a=a+1

The above content is a summary of the video study and personal practice understanding. If the infringement is unintentional, please notify me to make changes.

The above is the detailed content of Detailed explanation of js compiled language and interpreted language. 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
From C/C   to JavaScript: How It All WorksFrom C/C to JavaScript: How It All WorksApr 14, 2025 am 12:05 AM

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.

JavaScript Engines: Comparing ImplementationsJavaScript Engines: Comparing ImplementationsApr 13, 2025 am 12:05 AM

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

Beyond the Browser: JavaScript in the Real WorldBeyond the Browser: JavaScript in the Real WorldApr 12, 2025 am 12:06 AM

JavaScript's applications in the real world include server-side programming, mobile application development and Internet of Things control: 1. Server-side programming is realized through Node.js, suitable for high concurrent request processing. 2. Mobile application development is carried out through ReactNative and supports cross-platform deployment. 3. Used for IoT device control through Johnny-Five library, suitable for hardware interaction.

Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Apr 11, 2025 am 08:23 AM

I built a functional multi-tenant SaaS application (an EdTech app) with your everyday tech tool and you can do the same. First, what’s a multi-tenant SaaS application? Multi-tenant SaaS applications let you serve multiple customers from a sing

How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)Apr 11, 2025 am 08:22 AM

This article demonstrates frontend integration with a backend secured by Permit, building a functional EdTech SaaS application using Next.js. The frontend fetches user permissions to control UI visibility and ensures API requests adhere to role-base

JavaScript: Exploring the Versatility of a Web LanguageJavaScript: Exploring the Versatility of a Web LanguageApr 11, 2025 am 12:01 AM

JavaScript is the core language of modern web development and is widely used for its diversity and flexibility. 1) Front-end development: build dynamic web pages and single-page applications through DOM operations and modern frameworks (such as React, Vue.js, Angular). 2) Server-side development: Node.js uses a non-blocking I/O model to handle high concurrency and real-time applications. 3) Mobile and desktop application development: cross-platform development is realized through ReactNative and Electron to improve development efficiency.

The Evolution of JavaScript: Current Trends and Future ProspectsThe Evolution of JavaScript: Current Trends and Future ProspectsApr 10, 2025 am 09:33 AM

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

Demystifying JavaScript: What It Does and Why It MattersDemystifying JavaScript: What It Does and Why It MattersApr 09, 2025 am 12:07 AM

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

See all articles

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment