Answers for "js second last item 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
1

find last element in array javascript

const numArray = [1,2,3,4,5];
const lastNumber = numArray.reverse()[0];
Posted by: Guest on October-04-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language