Answers for "how to know if an element is the last in array js"

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
0

get last element in array javascript

var my_array = /* some array here */;
var last_element = my_array[my_array.length - 1];
Posted by: Guest on November-30-2020

Code answers related to "how to know if an element is the last in array js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language