how to access the last element in an array in javascript code example
Example 1: find last element in array javascript
var heroes = ["Batman", "Superman", "Hulk"];
var lastHero = heroes.pop(); // Returns last elment of the Array
// lastHero = "Hulk"
Example 2: js array last element get
.slice(-1)[0]