JavaScript Arrays 101
Let's say you need to store a list of your five favorite movies. The naive approach? Create five variables.
const movie1 = 'The Matrix';
const movie2 = 'Inception';
const movie3 = 'Interstellar';
cons
preet-jain.hashnode.dev4 min read