js last item of array code example
Example 1: last element of array javascript
var my_array = ;
var last_element = my_array[my_array.length - 1];
Example 2: javascript last element of array
arr.slice(-1)[0]
Example 3: get last item in array javascript
var colors = ["red","blue","green"];
var green = colors[colors.length - 1];
Example 4: get last element in array in js
if (loc_array[loc_array.length - 1] === 'index.html') {
} else {
}
Example 5: last element from list javascript
const lastItem = colors[colors.length - 1]
Example 6: get last element of array javascript
if (loc_array[loc_array.length - 1] === 'index.html') {
} else {
}