1. Original value and reference valueThe values of the six simple data types are all primitive values. When a primitive value is assigned to another variable through a variable, a new value will be copied, and the two are independent of each other. let num1 = 5 let num2 = num1 When a reference value is assigned to another variable through a variable, a value is also copied. This value is actually a pointer (reference), and the pointer still points to the same object. let obj1 = new Object() let obj2 = obj1 Since they point to the same reference object, adding properties to obj1.name = "zhangsan" console.log(obj2.name) // zhangsan When passing parameters to a function, there is only one situation where the parameters are passed by value, which is the same as assigning a variable. However, with reference values, the value passed is a pointer, but the pointer still points to the same object. 2. instanceof console.log(1 instanceof Object) //false let obj = new Object(); console.log(obj instanceof Object) //true console.log(null instanceof Object) //false function fun(){ // } console.log(fun instanceof Object) //true console.log(fun instanceof Function) //true console.log([] instanceof Object) //true console.log([] instanceof Array) //true 3. Scope The scope of a variable is called a scope or execution context. A variable is no longer visible outside of the scope. All systems have a scope chain when searching for a variable. First, look for the variable in the closest block scope that references it. If it is not found, continue looking in the outer local scope. If it is not found again, look in the global scope. If it is not found, an error This is the end of this article about variables and scope in advanced JavaScript programming. For more information about JavaScript variables and scope, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: TABLE tags (TAGS) detailed introduction
>>: Designing the experience: What’s on the button
In the previous article, we explained how nginx r...
We often use click events in the a tag: 1. a href=...
1. Log in to mysql: mysql -u root -h 127.0.0.1 -p...
We simply need to open any text editor, copy the f...
Redis is an open source NoSQL database written in...
Table of contents 1. Scope 1. Global scope 2. Loc...
Original address: https://blog.csdn.net/m0_465798...
1. Introduction Git is a free, open source distri...
{ {}} Get the value, the original content of the ...
Note that this is not a project created by vue-cl...
1. Python automatically runs at startup Suppose t...
Preface: MYSQL should be the most popular WEB bac...
1 Start the Docker service First you need to know...
Table of contents Block-level functions Directly ...
Download and install. First check whether there i...