0
JavaScriptで配列の最後の要素を取得する
2022-07-07

よくあるのは

const list = [1,2,3,4,5];
const lastValue = list[list.length - 1];

だが、そもそも上記の例でのlistを定義せずよしなにしたいケースが発生した

  • org/repoの文字列からリポジトリ名のみを抜き出すケース
const path = 'hoge/fuga';
const repo = path.split('/').pop(); // fuga

ES2022を使えるならatで良い

const path = 'hoge/fuga';
const repo = path.split('/').at(-1); // fuga

参考

javascript - Getting the last element of a split string array - Stack Overflow

0

Profile

swfz
swfz
日々学んだことを残していく
Today I Learned
コード片置き場

Account

RSS

Powered by Pixela
© 2024. swfz