JavaScript Arrays 101
Imagine storing a shopping list in JavaScript like this:
const fruit1 = "Apple";
const fruit2 = "Banana";
const fruit3 = "Mango";
const fruit4 = "Orange";
This works for a few values.
But what if you
javascript-hiteshdhayal.hashnode.dev6 min read