JavaScript Arrays 101
1. What is an array, and why do we need it?
Imagine you want to store the names of your five favorite movies. Here's how you might do it without an array:
let movie1 = "Inception";
let movie2 = "Inter
ayush001.hashnode.dev4 min read