Detailed explanation of js compiled language and interpreted language
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.
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!

JavaScript core data types are consistent in browsers and Node.js, but are handled differently from the extra types. 1) The global object is window in the browser and global in Node.js. 2) Node.js' unique Buffer object, used to process binary data. 3) There are also differences in performance and time processing, and the code needs to be adjusted according to the environment.

JavaScriptusestwotypesofcomments:single-line(//)andmulti-line(//).1)Use//forquicknotesorsingle-lineexplanations.2)Use//forlongerexplanationsorcommentingoutblocksofcode.Commentsshouldexplainthe'why',notthe'what',andbeplacedabovetherelevantcodeforclari

The main difference between Python and JavaScript is the type system and application scenarios. 1. Python uses dynamic types, suitable for scientific computing and data analysis. 2. JavaScript adopts weak types and is widely used in front-end and full-stack development. The two have their own advantages in asynchronous programming and performance optimization, and should be decided according to project requirements when choosing.

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

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.

Zend Studio 13.0.1
Powerful PHP integrated development environment

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
