how to check only the last index of array in javascript code example
Example 1: last index of array js
array.lastIndexOf(searchElement[, fromIndex]);
Example 2: find last item in an array JS
if (loc_array[loc_array.length - 1] === 'index.html') {
// do something
} else {
// something else
}