JavaScript Arrays 101: Storing Multiple Values the Smart Way
When we start learning programming, we usually store data in variables.
let fruit1 = "Apple"
let fruit2 = "Banana"
let fruit3 = "Mango"
This works when we have a few values.But imagine storing 50 fru
sulochan.hashnode.dev6 min read