Answers for "javascript use the length of the array below to retrieve the second to last item."

0

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
Posted by: Guest on September-14-2020
0

javascript get second last element of array

const numbers = ["one", "two", "three", "four"];
console.log(numbers[numbers.length - 2]);
Posted by: Guest on September-06-2020

Code answers related to "javascript use the length of the array below to retrieve the second to last item."

Code answers related to "Javascript"

Browse Popular Code Answers by Language