Introduction to Arrays

Let's see a brief introduction to Arrays in JavaScript.

We'll cover the following...

What’s an array

Imagine you want to create a list of all the movies you’ve seen this year. One solution would be to create several variables:

Press + to interact
const movie1 = "The Wolf of Wall Street";
const movie2 = "Zootopia";
const movie3 = "Babysitting";
// ...
...