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

2 Answers

0 votes
const array: string[] = ['c++', 'nodejs', 'c', 'php', 'typescript'];
 
const secondToLast: string = array[array.length - 2];
 
console.log(secondToLast); 
   
   
   
   
/*
run:
   
"php" 
   
*/

 



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

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



/*
run:

60

*/

 



answered Feb 10, 2024 by avibootz
...