Answers for "how to see last thing 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
2

javascript get last element in array

var array =[1,2,3,4];
var last= array[array.length-1];
Posted by: Guest on October-27-2020

Code answers related to "how to see last thing in array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language