how to retrieve the last element of an array code example
Example 1: javascript code for find the last element in array
if (loc_array[loc_array.length - 1] === 'index.html') {
// do something
} else {
// something else
}
Example 2: js array last element get
.slice(-1)[0]