JavaScript Arrays 101: Everything You Need to Get Started
Imagine you need to store the names of 5 students. You could do this:
let student1 = "Rahul";
let student2 = "Priya";
let student3 = "Amit";
let student4 = "Sneha";
let student5 = "Karan";
Now imagin
subhadipmishra1901.hashnode.dev6 min read