Answers for "how get the last element in array javascript"

34

Javascript get last item in array

var colors = ["red","blue","green"];
var green = colors[colors.length - 1]; //get last item in the array
Posted by: Guest on July-25-2019

Code answers related to "how get the last element in array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language