Answers for "nodejs select the last 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
1

js get last element of array

var last_element = my_array[my_array.length - 1];
Posted by: Guest on January-01-2021

Code answers related to "nodejs select the last array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language