Arrays in JavaScript: Storing Multiple Values Easily
Imagine you want to store a list of your favorite movies in JavaScript.
You could do something like this:
let movie1 = "Inception";
let movie2 = "Interstellar";
let movie3 = "The Dark Knight";
But th
kumar-rishabh.hashnode.dev2 min read