get second to last item in array javascript code example

Example 1: javascript get second last element in array

const myNumbers = [100, 200, 300, 400, 500];
// option one
const seconLastNumber = myNumbers.slice(-2, -1)[0]) // 400

// option two
const seconLastNumber = myNumbers[numbers.length - 2]; // 400

Example 2: javascript get second last element of array

const numbers = ["one", "two", "three", "four"];
console.log(numbers[numbers.length - 2]);

Example 3: last element of an array

int[] array = {1,2,3};
System.out.println(array[array.length - 1]);

Tags:

Java Example