how to get the last item of a array that include something js code example
Example 1: javascript get last element of array
var colors = ["red","blue","green"];
var green = colors[colors.length - 1];//get last item in the array
Example 2: javascript get last element of array
var array = [1,2,3,4,5,6];
var val = array[array.length - 1]; // 6