Abschnitt 3. Kapitel 11
single
Constant 3/3
Swipe um das Menü anzuzeigen
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;
Aufgabe
Swipe to start coding
Rearrange the following code to display the value of SALARY on the console.
Lösung
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.
War alles klar?
Danke für Ihr Feedback!
Abschnitt 3. Kapitel 11
single
Fragen Sie AI
Fragen Sie AI
Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen