Answers for "how to get the last element of array in javascript without lenght"

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

js get last array element

const array = [1, 2, 3, 4]
const lastArrayElement = array[array.length - 1]
Posted by: Guest on October-08-2020

Code answers related to "how to get the last element of array in javascript without lenght"

Code answers related to "Javascript"

Browse Popular Code Answers by Language