get last item index in array code example
Example 1: javascript get last element of array
var foods = ["kiwi","apple","banana"];
var banana = foods[foods.length - 1];
Example 2: how to get the last eleemnt of an array
var Cars = ["Volvo", "Mazda", "Lamborghini", "Maserati"];
var hmCars = Cars.pop();
console.log(hmCars)
Example 3: 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 4: get the last item in an array
let array = [0, 1, 2, 3, 4, 5, 6, 7]
console.log(array.slice(-1));
>>>[7]
console.log(array.slice(-2));
>>>[6, 7]
console.log(array.slice(-3));
>>>[5, 6, 7]