JS Basic Tutorial
In JavaScript, an Array is a special variable used to store multiple values in a single variable. Arrays are dynamic, meaning their size can change, and they can hold different types of data.
new Array()
ConstructorArray elements are accessed using index numbers (0-based indexing).
Try it yourself