get last element in array in js code example
Example 1: javascript get last element of array
var foods = ["kiwi","apple","banana"];
var banana = foods[foods.length - 1];
Example 2: get last element of array javascript
arr.slice(-1)[0]
Example 3: get last element in array in js
var array = ['red','green','yellow']
console.log(array[array.length-1])
Example 4: get last element in array in js
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 {
}
Example 6: get last element in array in js
if (loc_array[loc_array.length - 1] === 'index.html') {
} else {
}