get last element of array typescript code example
Example 1: javascript get last element of array
var foods = ["kiwi","apple","banana"];
var banana = foods[foods.length - 1];
Example 2: js take last item in array
const heroes = ["Batman", "Superman", "Hulk"];
const lastHero = heroes.pop();
Example 3: javascript last element of array
let arr = [1,2,3]
arr[arr.length - 1]
Example 4: how to get the last eleemnt of an array
var Cars = ["Volvo", "Mazda", "Lamborghini", "Maserati"];
var hmCars = Cars.pop();
console.log(hmCars)
Example 5: find last element in array nodejs
var a = loc_array.slice(-1)[0]
Example 6: how to get last element of array in typescript
var items: String[] = ["tom", "jeff", "sam"];
alert(items[items.length-1])