How to get the last n items in an array in JS 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: get last element in array in js

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

Example 3: javascript code for find the last element in array

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

Example 4: javascript get last element of array

console.log(2)