Search⌘ K
AI Features

Quiz

Assess your understanding of ES6 JavaScript features with this quiz. Review important concepts including let and const variables, arrow functions, destructuring, and Promises to reinforce your learning before moving on to arrow functions in the next lesson.

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

What is the correct output of the following code?

var greeting = "Hello";

greeting = "Farewell";

for (var i = 0; i < 2; i++) {
  var greeting = "Good morning";
}
console.log(greeting);
A.

Hello

B.

Good morning

C.

Farewell


1 / 4

In the ...