get last element of array javascript while do 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: get last element of array javascript

var numbers = ["one", "two", "three"];
var lastnumber = numbers[numbers.length - 1];
console.log(lastnumber);

Example 3: last element from list javascript

const lastItem = colors[colors.length - 1]

Example 4: get last element of array javascript

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