get last elemet array java code example
Example 1: how to find last element in array java
// GIVE FIRST NUMBER AND LAST NUMBER
firstNum = numbers[0];
lastNum = numbers[numbers.length-1];
Example 2: arraylist get last
E e = list.get(list.size() - 1);