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