how to get last value of 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: javascript get last element in an array

var last = arr.slice(-1)[0]

Example 4: find last element in array nodejs

var a = loc_array.slice(-1)[0]

Example 5: javascript get last element in array

//why was this a ad

Example 6: get last element in array in js

f (loc_array[loc_array.length - 1] === 'index.html') {
   // do something
} else {
   // something else
}