how to find the last array code example
Example 1: find last element in array javascript
const numArray = [1,2,3,4,5];
const lastNumber = numArray.reverse()[0];
Example 2: last element of an array
int[] array = {1,2,3};
System.out.println(array[array.length - 1]);