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

Contenuti del Corso

Introduction to JavaScript

Introduction to JavaScript

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

book
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.

123
MYPLANET = 'earth'; console.log(MYPLANET); const MYPLANET;
copy
Compito

Swipe to start coding

Rearrange the following code to display the value of SALARY on the console.

Soluzione

Summary:

  • We can neither change the values of the const variables through reassignment nor we can redeclare them.
  • Value should be assigned to const variables at the time of declaration.

Switch to desktopCambia al desktop per esercitarti nel mondo realeContinua da dove ti trovi utilizzando una delle opzioni seguenti
Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 3. Capitolo 11
toggle bottom row

book
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.

123
MYPLANET = 'earth'; console.log(MYPLANET); const MYPLANET;
copy
Compito

Swipe to start coding

Rearrange the following code to display the value of SALARY on the console.

Soluzione

Summary:

  • We can neither change the values of the const variables through reassignment nor we can redeclare them.
  • Value should be assigned to const variables at the time of declaration.

Switch to desktopCambia al desktop per esercitarti nel mondo realeContinua da dove ti trovi utilizzando una delle opzioni seguenti
Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 3. Capitolo 11
Switch to desktopCambia al desktop per esercitarti nel mondo realeContinua da dove ti trovi utilizzando una delle opzioni seguenti
Siamo spiacenti che qualcosa sia andato storto. Cosa è successo?
some-alt