This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
JavaScript array elements are accesses using numeric indexes (starting from 0).
const fruits = ["Banana", "Orange", "Apple", "Mango"]; document.getElementById("demo").innerHTML = fruits[fruits.length-1];
An Array
with a negative value indicates counting from the end. means the first from the end.