JavaScript Arrays 101
What Are Arrays and Why Do We Need Them?
Imagine you want to store (Apple, Banana, Mango, Orange, Grapes)One way is:
let fruit1 = "Apple";
let fruit2 = "Banana";
let fruit3 = "Mango";
let fruit4 = "Or
vt-blogs.hashnode.dev3 min read