Answers for "javascript how to know property of last element in array"

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
0

how to select last element in a array

int[] karunakar={1,2,3};
System.out.println(karunakar[karunakar.length-1]);
Posted by: Guest on August-04-2020

Code answers related to "javascript how to know property of last element in array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language