Symbols 3/3
Accessing the Description of the Symbol()
We can access the description of the symbol by calling the .description
method.
12let firstName = Symbol('Michael'); console.log(firstName.description);
Swipe to start coding
Create two symbols personName
and personAdress
by using Symbol()
give them the description of Name
and Address
and display their descriptions.
Solución
Summary
- Symbol is a primitive data type that is used to create a unique identifier.
- We use the global
Symbol()
function to create symbols. - We can provide a
description
to aSymbol()
function as an optional argument. - The description of the symbol can be accessed through the
.description
property.
¡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
Symbols 3/3
Desliza para mostrar el menú
Accessing the Description of the Symbol()
We can access the description of the symbol by calling the .description
method.
12let firstName = Symbol('Michael'); console.log(firstName.description);
Swipe to start coding
Create two symbols personName
and personAdress
by using Symbol()
give them the description of Name
and Address
and display their descriptions.
Solución
Summary
- Symbol is a primitive data type that is used to create a unique identifier.
- We use the global
Symbol()
function to create symbols. - We can provide a
description
to aSymbol()
function as an optional argument. - The description of the symbol can be accessed through the
.description
property.
¡Gracias por tus comentarios!
Awesome!
Completion rate improved to 2single