Answers for "position of last value in array in 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
2

javascript get last element in an array

var last = arr.slice(-1)[0]
Posted by: Guest on August-18-2020

Code answers related to "position of last value in array in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language