Answers for "get the last elements of an array starting from n index javascript"

76

javascript get last element of array

var colors = ["red","blue","green"];
var green = colors[colors.length - 1];//get last item in the array
Posted by: Guest on February-19-2020
2

javascript get last element of array

var name = ["jon","tem","kevin", "ramos"];
var lastNameInArray = name[name.length - 1];//  >> ramos
Posted by: Guest on January-08-2021

Code answers related to "get the last elements of an array starting from n index javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language