JavaScript Arrays 101
1. What Are Arrays and Why Do You Need Them?
Imagine you want to store the marks of 5 students.
Without arrays, you'd do this:
const marks1 = 85;
const marks2 = 90;
const marks3 = 78;
const marks4 = 9
blog-about-web-dev.hashnode.dev14 min read