Home > Web Front-end > JS Tutorial > body text

Detailed analysis of variable declaration and function declaration promotion in js (with examples)

不言
Release: 2018-08-23 14:16:43
Original
1575 people have browsed it

This article brings you a detailed analysis of variable declarations and function declaration improvements in js (with examples). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you. .

Variable declaration improvement
1. Variable definition
You can use var to define variables. If the variable is not assigned a value, the initial value of the variable is undefined.

2. Variable scope
Variable scope refers to the scope in which the variable works. Variables are divided into global variables and local variables. Global variables are defined globally; local variables are only valid within a function.
In the function body, local variables or parameters with the same name will have higher priority than global variables. That is to say, if there are local variables or parameters with the same name as the global variables in the function, the global variables will be overwritten by the local variables.
All variables not defined using var are considered global variables

3. Function scope and declaration in advance
The function role of JavaScript refers to all variables declared within the function Variables are always defined in the function body, which means that the variables are available before they are declared. This feature is called hoisting, that is, all declarations in JavaScript functions (just declarations, but not assignments) are hoisted. to the top of the function body, leaving the variable assignment operations where they were. Such as the following example:
Note: The declaration in advance is performed during pre-compilation of the JavaScript engine, before the code starts running.

var scope = 'global';function f(){
    console.log(scope);    
    var scope = 'local';
    console.log(scope);
}
Copy after login

Due to the declaration promotion within the function, the above code is actually like this

var scope = 'global';function f(){
    var scope;    //变量声明提升到函数顶部
    console.log(scope);
    scope = 'local';    //变量初始化依然保留在原来的位置
    console.log(scope);
}
Copy after login

After such transformation, the answer is very obvious. Since the scope has been defined before the first console.log(scope) statement, but no value has been assigned, the scope's reference is undefined at this time. Before the second console.log(scope) statement, the scope has been assigned a value of 'local', so the output result is local.

Function declaration promotion
Function declaration syntax

f('superman');function f(name){
    console.log(name);
}
Copy after login

Function expression syntax

f('superman');var f= function(name){
    console.log(name);
}
Copy after login

When running the above code, an error Uncaught ReferenceError: f will be reported is not defined(...), the error message shows that f is not defined.
Why are there differences between function declarations and function expressions in the same code?
This is because function declaration has a very important feature: function declaration hoisting. The function declaration statement will be hoisted to the top of the external script or external function scope (is it very similar to variable hoisting). It is precisely because of this feature that the function declaration can be placed after the statement that calls it. As in the example below, what should be the final output? :

var getName = function(){
    console.log(2);
}function getName (){
    console.log(1);
}
getName();
Copy after login

Some people may think that the final output result is 1. Let's analyze it. This example involves variable declaration promotion and function declaration promotion. As mentioned before, the function declaration promotion function getName(){} will be advanced to the top. The function expression var getName = function(){} shows variable declaration promotion. So in this case, getName is also a variable, so the declaration of this variable will also be promoted to the bottom, while the assignment of the variable will still remain at the original position. It should be noted that functions take precedence. Although both function declarations and variable declarations will be promoted, functions will be promoted first, and then variables. Therefore, the above function can be converted into the following:

function getName(){    //函数声明提升到顶部
    console.log(1);
}
var getName;    //变量声明提升
getName = function(){    //变量赋值依然保留在原来的位置
    console.log(2);
}
getName();    // 最终输出:2
Copy after login

So the final output is: 2. In the original example, although the function declaration is after the function expression, because the function declaration is promoted to the top, getName is later overwritten by the assignment operation of the function expression, so 2 is output.

related suggestion:



The above is the detailed content of Detailed analysis of variable declaration and function declaration promotion in js (with examples). For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!