JavaScriptで文字列の最後の文字を取得する方法
方法1: 文字列の長さを使用するconst str = "Hello World"; const lastChar = str.charAt(str.length - 1); console.log(lastChar); // 結果: d>>More
方法1: 文字列の長さを使用するconst str = "Hello World"; const lastChar = str.charAt(str.length - 1); console.log(lastChar); // 結果: d>>More