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