javascript end element of an array code example
Example 1: javascript last element of an array
var colors = ["red","blue","green"];
var green = colors[colors.length - 1];//get last
Example 2: last element of an array
int[] array = {1,2,3};
System.out.println(array[array.length - 1]);