How to get the second to last element in array with JavaScript

2 Answers

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

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

console.log(secondToLast); 

  
  
  
  
/*
run:
  
"c"
  
*/

 



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

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



/*
run:

70

*/

 



answered Feb 10, 2024 by avibootz

Related questions

...