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