last object in array javascript 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: 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 element of array javascript

var my_array = /* some array here */;
var last_element = my_array[my_array.length - 1];

Example 4: last element of an array javascript

var myArray = [1, 2, 3, 4];
myArray[myArray.length - 1];

Example 5: find last element in array javascript

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

Example 6: last element from list javascript

const lastItem = colors[colors.length - 1]