...

/

Quiz Yourself on JavaScript Essentials

Quiz Yourself on JavaScript Essentials

Check your understanding of what you've learned in this chapter by taking this quiz.

We'll cover the following...
Technical Quiz
1.

What will be the output of the following code?

const name = "Robert";
name = "Robbie";
console.log(name);
A.

null

B.

Robbie

C.

SyntaxError: Assignment to constant variable.

D.

TypeError: Assignment to constant variable.


1 / 5