JavaScript Arrays 101
Introduction
Imagine you want to store the names of your 5 favourite movies. Without arrays, you'd have to create a separate variable for each one:
let movie1 = 'Inception';
let movie2 = 'Interstellar
joydeep.hashnode.dev4 min read