how to select last element in a array code example
Example 1: get last element of array javascript
if (loc_array[loc_array.length - 1] === 'index.html') {
} else {
}
Example 2: last element of an array
int[] array = {1,2,3};
System.out.println(array[array.length - 1]);
Example 3: how to select last element in a array
if (loc_array[loc_array.length - 1] === 'index.html') {
} else {
}
Example 4: how to select last element in a array
int[] karunakar={1,2,3};
System.out.println(karunakar[karunakar.length-1]);