This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

JavaScript Arrays

Bracket Indexing

JavaScript array elements are accessed using numeric indexes (starting from 0).

const cars = ["Saab", "Volvo", "BMW"];
document.getElementById("demo").innerHTML = cars[0];