Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Var 3/3 | Data Types and Variables
Introduction to JavaScript (staging)
course content

Contenido del Curso

Introduction to JavaScript (staging)

Introduction to JavaScript (staging)

1. Introduction
2. JavaScript syntax
3. Data Types and Variables

Var 3/3

Why <code class="go3679463865">var</code> 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.

Tarea

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.

Tarea

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 the let keyword in JavaScript.
  • Variables declared with var can be accessed before the declaration.
  • The let and const do not allow hoisting but var does.
  • It is not a good practice to use var instead we should use let.

Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones

¿Todo estuvo claro?

Sección 3. Capítulo 6
toggle bottom row

Var 3/3

Why <code class="go3679463865">var</code> 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.

Tarea

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.

Tarea

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 the let keyword in JavaScript.
  • Variables declared with var can be accessed before the declaration.
  • The let and const do not allow hoisting but var does.
  • It is not a good practice to use var instead we should use let.

Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones

¿Todo estuvo claro?

Sección 3. Capítulo 6
toggle bottom row

Var 3/3

Why <code class="go3679463865">var</code> 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.

Tarea

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.

Tarea

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 the let keyword in JavaScript.
  • Variables declared with var can be accessed before the declaration.
  • The let and const do not allow hoisting but var does.
  • It is not a good practice to use var instead we should use let.

Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones

¿Todo estuvo claro?

Why <code class="go3679463865">var</code> 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.

Tarea

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 the let keyword in JavaScript.
  • Variables declared with var can be accessed before the declaration.
  • The let and const do not allow hoisting but var does.
  • It is not a good practice to use var instead we should use let.

Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
Sección 3. Capítulo 6
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
We're sorry to hear that something went wrong. What happened?
some-alt