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

Swipe um das Menü anzuzeigen

book
Symbols 3/3

Accessing the Description of the Symbol()

We can access the description of the symbol by calling the .description method.

12
let firstName = Symbol('Michael'); console.log(firstName.description);
copy
Aufgabe

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ösung

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 a Symbol() function as an optional argument.

  • The description of the symbol can be accessed through the .description property.

Switch to desktopWechseln Sie zum Desktop, um in der realen Welt zu übenFahren Sie dort fort, wo Sie sind, indem Sie eine der folgenden Optionen verwenden
War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 3. Kapitel 29
Wir sind enttäuscht, dass etwas schief gelaufen ist. Was ist passiert?

Fragen Sie AI

expand
ChatGPT

Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen

book
Symbols 3/3

Accessing the Description of the Symbol()

We can access the description of the symbol by calling the .description method.

12
let firstName = Symbol('Michael'); console.log(firstName.description);
copy
Aufgabe

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ösung

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 a Symbol() function as an optional argument.

  • The description of the symbol can be accessed through the .description property.

Switch to desktopWechseln Sie zum Desktop, um in der realen Welt zu übenFahren Sie dort fort, wo Sie sind, indem Sie eine der folgenden Optionen verwenden
War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 3. Kapitel 29
Switch to desktopWechseln Sie zum Desktop, um in der realen Welt zu übenFahren Sie dort fort, wo Sie sind, indem Sie eine der folgenden Optionen verwenden
Wir sind enttäuscht, dass etwas schief gelaufen ist. Was ist passiert?
some-alt