Answers for "the best way to select last element in an array javascript"

26

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
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 "the best way to select last element in an array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language