to get the last value of array in javascript code example
Example: javascript get last element of array
var colors = ["red","blue","green"];
var green = colors[colors.length - 1];//get last item in the array
var colors = ["red","blue","green"];
var green = colors[colors.length - 1];//get last item in the array