Answers for "takes an array and return the last element of the array in js"

105

javascript get last element of array

var foods = ["kiwi","apple","banana"];
var banana = foods[foods.length - 1]; // Getting last element
Posted by: Guest on June-20-2020
5

find last element in array javascript

var heroes = ["Batman", "Superman", "Hulk"];
var lastHero = heroes.pop(); // Returns last elment of the Array
// lastHero = "Hulk"
Posted by: Guest on June-11-2020

Code answers related to "takes an array and return the last element of the array in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language