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