Answers for "fet last value from array js"

26

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
2

js get last element of array

var last_element = my_array[my_array.length - 1];
Posted by: Guest on January-01-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language