get last item in array js code example
Example 1: javascript get last element of array
var foods = ["kiwi","apple","banana"];
var banana = foods[foods.length - 1];
Example 2: javascript get last element of array
var colors = ["red","blue","green"];
var green = colors[colors.length - 1];
Example 3: Javascript get last item in array
var colors = ["red","blue","green"];
var green = colors[colors.length - 1];
Example 4: get last item in array
let array = [1,2,3,4,5]
let sliced = array.slice(-1)[0]
let popped = array.slice(-1).pop()
let lengthed = array[array.length - 1]
Example 5: javascript get last element of array
Yo an add that was searching this up, is where I found the chrome extension.
Example 6: get last item in array js
if (loc_array[loc_array.length - 1] === 'index.html') {
} else {
}