select last element js 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 the last element of array javascript
if (loc_array[loc_array.length - 1] === 'index.html') {
// do something
} else {
// something else
}