Day 3: Arrays & Loops (JavaScript Basics)
Arrays :
An array stores multiple values in a single variable.
Imagine you have a cupboard with numbered shelves.Each shelf holds one thing an apple, a banana, or even your favourite bug report.
const cupboard = ["Apple", "Banana", "Mango"];
Here:
...