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.
Lösning
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
descriptionto aSymbol()function as an optional argument. - The description of the symbol can be accessed through the
.descriptionproperty.
Tack för dina kommentarer!
single
Fråga AI
Fråga AI
Fråga vad du vill eller prova någon av de föreslagna frågorna för att starta vårt samtal
What happens if I create a Symbol without a description?
Can I change the description of a Symbol after it's created?
Are Symbols unique even if they have the same description?
Fantastiskt!
Completion betyg förbättrat till 2
Symbols 3/3
Svep för att visa menyn
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.
Lösning
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
descriptionto aSymbol()function as an optional argument. - The description of the symbol can be accessed through the
.descriptionproperty.
Tack för dina kommentarer!
single