Answers for "return an array with last element js"

9

get last item in array javascript

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

Code answers related to "return an array with last element js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language