second last element of an array javascript code example
Example: 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