Search⌘ K
AI Features

Quiz: Make a List, Check It Twice

Explore your understanding of arrays and loops in JavaScript with this quiz designed for beginners. Learn to review core concepts through practice questions that prepare you for building hands-on projects by applying these foundational skills.

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

What does the following code print?

let colors = ["red", "blue", "green"];
console.log(colors[1]);
A.

red

B.

blue

C.

green

D.

undefined


1 / 3
...