print last object in array javascript code example
Example 1: js take last item in array
const heroes = ["Batman", "Superman", "Hulk"];
const lastHero = heroes.pop(); // Returns last elment of the Array
// lastHero = "Hulk"
Example 2: js get last array element
const array = [1, 2, 3, 4]
const lastArrayElement = array[array.length - 1]