Answers for "how to get last index of array in js methods"

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
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 "how to get last index of array in js methods"

Code answers related to "Javascript"

Browse Popular Code Answers by Language