What is an Array?


An Array is a special object in JavaScript used to store multiple values in a single variable.

Instead of creating separate variables,



let student1 = "John";
let student2 = "David";
let student3 = "Alex";






we can use an array:



let students = ["John", "David", "Alex"];






Each value inside the array is called an...