How to get the second to last element in array with Node.js

2 Answers

0 votes
const array = ['c++', 'nodejs', 'c', 'python', 'typescript'];

const secondToLast = array[array.length - 2];

console.log(secondToLast); 
  
  
  
  
/*
run:
  
python
  
*/

 



answered May 18, 2022 by avibootz
0 votes
const arr = [10, 20, 30, 40, 50, 60, 70];

console.log(arr.at(-2));



/*
run:

60

*/

 



answered Feb 10, 2024 by avibootz
...