🛡
[TypeScript] 配列の末尾の値を取得する
はじめに
この記事では、コードをシンプルに書ける配列の末尾の値を取得する方法を解説します。
参考資料
結論
1. length を使う
const numList: number[] = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
console.log(numList[numList.length - 1]);
実行結果を確認する
10
2. .at()を使う
const numList: number[] = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
console.log(numList.at(-1));
実行結果を確認する
10
const numList: number[] = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
console.log(numList.at(11));
実行結果を確認する
undefined
Discussion