js get last item in list code example
Example 1: Javascript get last item in array
var colors = ["red","blue","green"];
var green = colors[colors.length - 1]; //get last item in the array
Example 2: get last element of array javascript
var numbers = ["one", "two", "three"];
var lastnumber = numbers[numbers.length - 1];
console.log(lastnumber);
Example 3: last element of an array
int[] array = {1,2,3};
System.out.println(array[array.length - 1]);