Quiz
Take this quiz to evaluate your understanding of key ES6 features such as let, const, arrow functions, destructuring, and Promises. This helps solidify your grasp before moving on to the next lesson about Symbols.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
What is the correct output of this code:
const name = "myname";
const person = {
[name]:"Alberto",
};
console.log(person.myname);
A.
name
B.
“name”
C.
“Alberto”
D.
myname
1 / 2
In the next ...