Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Apprendre Symbols 2/3 | Data Types and Variables
Introduction to JavaScript

Glissez pour afficher le menu

book
Symbols 2/3

Symbol() Function Description:

We can provide a description to the Symbol() function as an optional argument. This description will make our symbols more clear.

The following example creates two symbols: firstName and lastName with values Michael and Clarke respectively:

1234
let firstName = Symbol('Michael'); console.log(firstName.toString()); let lastName = Symbol('Clarke'); console.log(lastName.toString());
copy
Tâche

Swipe to start coding

Create a symbol with the value key and store it in the variable password. Output the result.

Solution

Switch to desktopPassez à un bureau pour une pratique réelleContinuez d'où vous êtes en utilisant l'une des options ci-dessous
Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 3. Chapitre 28
single

single

Demandez à l'IA

expand

Demandez à l'IA

ChatGPT

Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion

close

Awesome!

Completion rate improved to 2

book
Symbols 2/3

Symbol() Function Description:

We can provide a description to the Symbol() function as an optional argument. This description will make our symbols more clear.

The following example creates two symbols: firstName and lastName with values Michael and Clarke respectively:

1234
let firstName = Symbol('Michael'); console.log(firstName.toString()); let lastName = Symbol('Clarke'); console.log(lastName.toString());
copy
Tâche

Swipe to start coding

Create a symbol with the value key and store it in the variable password. Output the result.

Solution

Switch to desktopPassez à un bureau pour une pratique réelleContinuez d'où vous êtes en utilisant l'une des options ci-dessous
Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

close

Awesome!

Completion rate improved to 2

Glissez pour afficher le menu

some-alt