Answers for "getting last value in an array javascript"

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

get last element in array in js

var array = ['red','green','yellow']
console.log(array[array.length-1])
Posted by: Guest on January-24-2021

Code answers related to "getting last value in an array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language