Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Symbols 1/3 | Data Types and Variables
Introduction to JavaScript (staging)
course content

Conteúdo do Curso

Introduction to JavaScript (staging)

Introduction to JavaScript (staging)

1. Introduction
2. JavaScript syntax
3. Data Types and Variables

Symbols 1/3

The symbol is a primitive data type that is used to create a unique identifier. Symbols are unchallengeable and unique.

Creation of symbols

We use the global Symbol() function to create a new symbol. We will work briefly with the functions in the later section but you have to learn that to create a primitive symbol we will use Symbol().

12
let s = Symbol('foo'); console.log(s.toString());
copy

Note: Symbol variable should be converted to string if you want to use it as a string value. That can be done by using .toString() method.

A unique value is created every time the Symbol() function is called or used and these values are not equal to each other (they are unique).

1
console.log(Symbol() === Symbol());
copy

Even when we pass equal arguments, the result is still different, for example:

1
console.log(Symbol('Berlin') == Symbol('Berlin'));
copy

Tarefa

You have to check that Symbol('Monaco') and Symbol('Istanbul') are equal or not and display the result on the console.

Tarefa

You have to check that Symbol('Monaco') and Symbol('Istanbul') are equal or not and display the result on the console.

Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo

Tudo estava claro?

Seção 3. Capítulo 27
toggle bottom row

Symbols 1/3

The symbol is a primitive data type that is used to create a unique identifier. Symbols are unchallengeable and unique.

Creation of symbols

We use the global Symbol() function to create a new symbol. We will work briefly with the functions in the later section but you have to learn that to create a primitive symbol we will use Symbol().

12
let s = Symbol('foo'); console.log(s.toString());
copy

Note: Symbol variable should be converted to string if you want to use it as a string value. That can be done by using .toString() method.

A unique value is created every time the Symbol() function is called or used and these values are not equal to each other (they are unique).

1
console.log(Symbol() === Symbol());
copy

Even when we pass equal arguments, the result is still different, for example:

1
console.log(Symbol('Berlin') == Symbol('Berlin'));
copy

Tarefa

You have to check that Symbol('Monaco') and Symbol('Istanbul') are equal or not and display the result on the console.

Tarefa

You have to check that Symbol('Monaco') and Symbol('Istanbul') are equal or not and display the result on the console.

Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo

Tudo estava claro?

Seção 3. Capítulo 27
toggle bottom row

Symbols 1/3

The symbol is a primitive data type that is used to create a unique identifier. Symbols are unchallengeable and unique.

Creation of symbols

We use the global Symbol() function to create a new symbol. We will work briefly with the functions in the later section but you have to learn that to create a primitive symbol we will use Symbol().

12
let s = Symbol('foo'); console.log(s.toString());
copy

Note: Symbol variable should be converted to string if you want to use it as a string value. That can be done by using .toString() method.

A unique value is created every time the Symbol() function is called or used and these values are not equal to each other (they are unique).

1
console.log(Symbol() === Symbol());
copy

Even when we pass equal arguments, the result is still different, for example:

1
console.log(Symbol('Berlin') == Symbol('Berlin'));
copy

Tarefa

You have to check that Symbol('Monaco') and Symbol('Istanbul') are equal or not and display the result on the console.

Tarefa

You have to check that Symbol('Monaco') and Symbol('Istanbul') are equal or not and display the result on the console.

Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo

Tudo estava claro?

The symbol is a primitive data type that is used to create a unique identifier. Symbols are unchallengeable and unique.

Creation of symbols

We use the global Symbol() function to create a new symbol. We will work briefly with the functions in the later section but you have to learn that to create a primitive symbol we will use Symbol().

12
let s = Symbol('foo'); console.log(s.toString());
copy

Note: Symbol variable should be converted to string if you want to use it as a string value. That can be done by using .toString() method.

A unique value is created every time the Symbol() function is called or used and these values are not equal to each other (they are unique).

1
console.log(Symbol() === Symbol());
copy

Even when we pass equal arguments, the result is still different, for example:

1
console.log(Symbol('Berlin') == Symbol('Berlin'));
copy

Tarefa

You have to check that Symbol('Monaco') and Symbol('Istanbul') are equal or not and display the result on the console.

Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Seção 3. Capítulo 27
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
We're sorry to hear that something went wrong. What happened?
some-alt