Quiz
In this lesson, we will solve a quiz related to the features introduced in ES2019.
We'll cover the following...
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
Question 1 of 30 attempted
...