当前位置:网站首页>JS function promotion and declaration promotion of VaR variable
JS function promotion and declaration promotion of VaR variable
2022-07-06 12:13:00 【Aboci Bang】
Variable Promotion
// The first 1 topic ~~
var a = 1;
function bar() {
console.log(a);
if (!a) {
var a= 10;
}
console.log(a);
}
bar();
// ask : two console.log() What is the value of .
**// Output :**
undefined
10
// analysis :
Global variable has a, But there is also a function inside a So the global variable a Invalid inside function , because var Declared variables have no block level scope concept therefore if Inside a Promoted to the top of the function And only enhance the declaration part Do not promote the assignment part So the first one console Output the function's internal promotion a But there is no assignment at this point JS Will assign initial values to the variables of life undefined
the second console see if Conditions !a here a yes undefined by false that !a Namely true
Will enter if In scope to a assignment So the second one console Output 10.
There are several concepts to be clear about
var Functional scope But there is no block level scope
Block level scope : Including loop statement and loop body ; Braces for branch statements ; Or just a pair of braces .
Such as :
//(1)
if(true){
var a = 1;
}
//(2)
for(var i=0;i<10;i++){
var a = 1;
}
//(3)
{
var a = 1;
}
All of the above will make var Declared variable promotion .
// The first 2 topic ~~
function fun5(a, b) {
var a;
var b;
console.log(a, b);
}
fun5(1, 2);
~~ Output
1 2
// analysis :
It's stated here a,b In fact, the program automatically declares it to us That is to say, the formal parameter variable and the variable we declare inside the function and do not assign a value are one variable ( The premise is that the variable names should be the same )
Formal parameter variables do not write declarations js It will also help us implicitly declare Artificial manual declaration is actually optional , Mainly to confuse us …
// The first 3 topic ~~
function fun() {
var n1 = n2 = n3 = 1;
}
fun();
console.log(n2, n3);
// Output :
1 1
// analysis :
Here we need to pay attention to :
(1) Not inside the function var Variables declared by keywords are treated as global variables , therefore n2 n3 yes Global variables .
var Next to the back n1 Is the declared local variable .
(2) Assignment operator execution order
n3 = 1; // n3 yes 1
n2 = n3; // n2 yes 1
var n1 = n2; // because n1 Is a local variable, so an external call will show undefined .
Function enhancement
c();
var c=2;
function c(){
console.log(5);
}
c();
answer :
Function enhancement : Before the program is executed , It will promote the function as a whole to the front of the scope , You can call first and then create .
therefore : First line c() Yes, you can call function c Of .
Be careful : The variable name is the same as the function name , Because the function name It is essentially a variable , Saved the function . So the function c It can be written.
var c = function(){
console.log(5);
}
// So the next sentence Namely
var c = 2;
// here c yes 2, It's no longer a method . So the display function is undefined .
a();
function a() {
console.log(111);
}
a();
function a() {
console.log(222);
}
a = function () {
console.log(333); }
a();
The result is :222 222 333
explain : Function expression No promotion ! Because the equal sign is assignment It's not a statement
~~function The first one will improve
a = function () {
console.log(333); }
a();
function a() {
console.log(222);
}
a();
function a() Promoted to the front Function expressions do not promote Then be a=function() covers
var a = 5;
function a() {
console.log(111);
}
console.log('a :>> ', a);
amount to
边栏推荐
- ESP学习问题记录
- Unit test - unittest framework
- ES6语法总结--下篇(进阶篇 ES6~ES11)
- JS 函数提升和var变量的声明提升
- open-mmlab labelImg mmdetection
- STM32 how to locate the code segment that causes hard fault
- Apprentissage automatique - - régression linéaire (sklearn)
- Kaggle competition two Sigma connect: rental listing inquiries
- AMBA、AHB、APB、AXI的理解
- I2C bus timing explanation
猜你喜欢
共用体(union)详解【C语言】
Understanding of AMBA, AHB, APB and Axi
E-commerce data analysis -- salary prediction (linear regression)
Kaggle竞赛-Two Sigma Connect: Rental Listing Inquiries
【ESP32学习-2】esp32地址映射
Cannot change version of project facet Dynamic Web Module to 2.3.
Priority inversion and deadlock
Detailed explanation of 5g working principle (explanation & illustration)
Kaggle competition two Sigma connect: rental listing inquiries
js 变量作用域和函数的学习笔记
随机推荐
JS正则表达式基础知识学习
Générateur d'identification distribué basé sur redis
uCOS-III 的特点、任务状态、启动
MP3mini播放模块arduino<DFRobotDFPlayerMini.h>函数详解
Cannot change version of project facet Dynamic Web Module to 2.3.
E-commerce data analysis -- User Behavior Analysis
JS 函数提升和var变量的声明提升
gcc 编译选项
arduino获取随机数
JS object and event learning notes
Arduino get random number
Machine learning -- linear regression (sklearn)
Variable parameter principle of C language function: VA_ start、va_ Arg and VA_ end
Time slice polling scheduling of RT thread threads
Priority inversion and deadlock
Pat 1097 duplication on a linked list (25 points)
Variable star user module
Several declarations about pointers [C language]
程序员老鸟都会搞错的问题 C语言基础 指针和数组
Use of lists