array last item js code example
Example 1: last element of array javascript
var my_array = /* some array here */;
var last_element = my_array[my_array.length - 1];
Example 2: js take last item in array
const heroes = ["Batman", "Superman", "Hulk"];
const lastHero = heroes.pop(); // Returns last elment of the Array
// lastHero = "Hulk"
Example 3: last item in array javascript
// Find the last item in an array.
arrayName[arrayName.length - 1]
Example 4: get last element of array javascript
let colors = ["red", "yellow", "green"];
let lastELement = colors[colors.length - 1]