find last item in array code example

Example 1: javascript get last element of array

var foods = ["kiwi","apple","banana"];
var banana = foods[foods.length - 1]; // Getting last element

Example 2: how to get last element of array

return array[array.length - 1];

Example 3: find last element in array javascript

var heroes = ["Batman", "Superman", "Hulk"];
var lastHero = heroes.pop(); // Returns last elment of the Array
// lastHero = "Hulk"

Example 4: get last item in array javascript

var colors = ["black", "white", "red", "yellow"];
var yellow = colors[colors.length - 1];