 Constant 3/3
Constant 3/3
const Does Not Allow Hoisting
As discussed in the previous chapter, let does not allow hoisting i.e. we cannot use a variable before the declaration. Just like let we can not use hoisting with the const.it is only supported with var.
123MYPLANET = 'earth'; console.log(MYPLANET); const MYPLANET;
Swipe to start coding
Rearrange the following code to display the value of SALARY on the console.
Solución
Summary:
- We can neither change the values of the constvariables through reassignment nor we can redeclare them.
- Value should be assigned to constvariables at the time of declaration.
¡Gracias por tus comentarios!
single
Pregunte a AI
Pregunte a AI
Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla
Resumir este capítulo
Explicar el código en file
Explicar por qué file no resuelve la tarea
Awesome!
Completion rate improved to 2 Constant 3/3
Constant 3/3
Desliza para mostrar el menú
const Does Not Allow Hoisting
As discussed in the previous chapter, let does not allow hoisting i.e. we cannot use a variable before the declaration. Just like let we can not use hoisting with the const.it is only supported with var.
123MYPLANET = 'earth'; console.log(MYPLANET); const MYPLANET;
Swipe to start coding
Rearrange the following code to display the value of SALARY on the console.
Solución
Summary:
- We can neither change the values of the constvariables through reassignment nor we can redeclare them.
- Value should be assigned to constvariables at the time of declaration.
¡Gracias por tus comentarios!
single