last element from array javascript code example
Example 1: last element of an array javascript
var myArray = [1, 2, 3, 4];
myArray[myArray.length - 1];
Example 2: javascript last element of an array
var colors = ["red","blue","green"];
var green = colors[colors.length - 1];
Example 3: javascript last element of array
arr.slice(-1)[0]
Example 4: javascript code for find the last element in array
if (loc_array[loc_array.length - 1] === 'index.html') {
} else {
}
Example 5: get last element in array in js
f (loc_array[loc_array.length - 1] === 'index.html') {
} else {
}