JavaScript Arrays 101
Let's say we want to store the names of five students in our program. Without arrays, we would do something like this:
let student1 = "Gurjeet";
let student2 = "Priya";
let student3 = "Rahul";
let stu
blog.gurjeet.tech5 min read