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:
1234let firstName = Symbol('Michael'); console.log(firstName.toString()); let lastName = Symbol('Clarke'); console.log(lastName.toString());
Swipe to start coding
Create a symbol with the value key
and store it in the variable password
. Output the result.
Solution
Merci pour vos commentaires !
single
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Résumer ce chapitre
Expliquer le code dans file
Expliquer pourquoi file ne résout pas la tâche
Awesome!
Completion rate improved to 2
Symbols 2/3
Glissez pour afficher le menu
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:
1234let firstName = Symbol('Michael'); console.log(firstName.toString()); let lastName = Symbol('Clarke'); console.log(lastName.toString());
Swipe to start coding
Create a symbol with the value key
and store it in the variable password
. Output the result.
Solution
Merci pour vos commentaires !
Awesome!
Completion rate improved to 2single