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