javascript 文字列の最後の文字を抽出する方法
環境
Google Chrome 114.0.5735.199(Official Build) (64 ビット)
Windows 11 Pro 64bit
構文
文字列.substr(-1);
文字列.slice(-1);
文字列.charAt(文字列.length – 1);
方法1
const str = “arkgame";
const result = str.substr(-1);
console.log(result);
方法2
const str = “arkgame";
const result = str.slice(-1);
console.log(result);
方法3
const str = “arkgame";
const result = str.charAt(str.length – 1);
console.log(result);