JavaScript Arrays 101
📌 What Are Arrays and Why Do We Need Them?
Imagine you want to store:
🍎 Apple🍌 Banana🥭 Mango🍇 Grapes
If you store them separately:
let fruit1 = "Apple";
let fruit2 = "Banana";
let fruit3 = "Mango
array-js-sss.hashnode.dev3 min read