Quiz

In this lesson, we will solve a quiz related to the features introduced in ES2019.

We'll cover the following...

Quiz #

Technical Quiz
1.

What is the correct output of the following code?

const me = Symbol("Alberto");
console.log(me.description);
A.

Symbol

B.

Symbol(Alberto)

C.

“Alberto”

D.

undefined


1 / 3
...