Conteúdo do Curso
Introduction to JavaScript (staging)
Introduction to JavaScript (staging)
Var 3/3
Why var
is not used now
Due to hoisting and the global scope declaring variables with the var
leads to so much confusion in the code. If we change the value of a variable at just one place intentionally the var
will change that value all over the code. It will create so many unexpected results in our code.
Tarefa
Hoisting is used in the following code and this code does not give any error but not a preferable approach. Your task is, using only the let
keyword, to re-arrange the variables in the code and display all the variables.
Summary:
- The
var
is an alternative to thelet
keyword in JavaScript. - Variables declared with
var
can be accessed before the declaration. - The
let
andconst
do not allow hoisting butvar
does. - It is not a good practice to use
var
instead we should use let.
Obrigado pelo seu feedback!
Var 3/3
Why var
is not used now
Due to hoisting and the global scope declaring variables with the var
leads to so much confusion in the code. If we change the value of a variable at just one place intentionally the var
will change that value all over the code. It will create so many unexpected results in our code.
Tarefa
Hoisting is used in the following code and this code does not give any error but not a preferable approach. Your task is, using only the let
keyword, to re-arrange the variables in the code and display all the variables.
Summary:
- The
var
is an alternative to thelet
keyword in JavaScript. - Variables declared with
var
can be accessed before the declaration. - The
let
andconst
do not allow hoisting butvar
does. - It is not a good practice to use
var
instead we should use let.
Obrigado pelo seu feedback!
Var 3/3
Why var
is not used now
Due to hoisting and the global scope declaring variables with the var
leads to so much confusion in the code. If we change the value of a variable at just one place intentionally the var
will change that value all over the code. It will create so many unexpected results in our code.
Tarefa
Hoisting is used in the following code and this code does not give any error but not a preferable approach. Your task is, using only the let
keyword, to re-arrange the variables in the code and display all the variables.
Summary:
- The
var
is an alternative to thelet
keyword in JavaScript. - Variables declared with
var
can be accessed before the declaration. - The
let
andconst
do not allow hoisting butvar
does. - It is not a good practice to use
var
instead we should use let.
Obrigado pelo seu feedback!
Why var
is not used now
Due to hoisting and the global scope declaring variables with the var
leads to so much confusion in the code. If we change the value of a variable at just one place intentionally the var
will change that value all over the code. It will create so many unexpected results in our code.
Tarefa
Hoisting is used in the following code and this code does not give any error but not a preferable approach. Your task is, using only the let
keyword, to re-arrange the variables in the code and display all the variables.
Summary:
- The
var
is an alternative to thelet
keyword in JavaScript. - Variables declared with
var
can be accessed before the declaration. - The
let
andconst
do not allow hoisting butvar
does. - It is not a good practice to use
var
instead we should use let.