Course Content
Introduction to JavaScript (staging)
Introduction to JavaScript (staging)
Symbols 3/3
Accessing the Description of the Symbol()
We can access the description of the symbol by calling the .description
method.
let firstName = Symbol('Michael'); console.log(firstName.description);
Swipe to show code editor
Create two symbols personName
and personAdress
by using Symbol()
give them the description of Name
and Address
and display their descriptions.
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.
Thanks for your feedback!
Symbols 3/3
Accessing the Description of the Symbol()
We can access the description of the symbol by calling the .description
method.
let firstName = Symbol('Michael'); console.log(firstName.description);
Swipe to show code editor
Create two symbols personName
and personAdress
by using Symbol()
give them the description of Name
and Address
and display their descriptions.
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.
Thanks for your feedback!