JavaScriptで文字列から1文字を抽出する方法
charAt()メソッドを使用する方法: charAt()メソッドは、指定した位置の文字を返します。位置は0から始まるインデックスで指定します。const str = "Hello, World!"; const char = str.charAt(0); console.log(char); // "H">>More
charAt()メソッドを使用する方法: charAt()メソッドは、指定した位置の文字を返します。位置は0から始まるインデックスで指定します。const str = "Hello, World!"; const char = str.charAt(0); console.log(char); // "H">>More