JavaScript Arrays 101
What Are Arrays and Why Do We Need Them?
Imagine you want to store your 5 favorite movies.
Without arrays, you might do something like this:
const movie1 = "Inception";
const movie2 = "Interstellar";
yashika29.hashnode.dev3 min read