Answers for "typescript array last element"

25

js take last item in array

const heroes = ["Batman", "Superman", "Hulk"];
const lastHero = heroes.pop(); // Returns last elment of the Array
// lastHero = "Hulk"
Posted by: Guest on March-16-2020
1

how to get the last element in javascript

const nums = [1, 2, 3, 4, 5, 6, 7];
const lastOne = nums[nums.lenght - 1]; // last element of array
Posted by: Guest on May-01-2020
0

how to get last element of array in typescript

var items: String[] = ["tom", "jeff", "sam"];

alert(items[items.length-1])
Posted by: Guest on November-10-2020

Code answers related to "typescript array last element"

Code answers related to "Javascript"

Browse Popular Code Answers by Language