charAtメソッド

charAtは、指定したindex(整数)が文字列で何番目なのかを判断するメソッドになります。
index(整数)以外や指定なしの場合は、文字列の0番目を返し、文字列以上のindex(整数)指定は空文字を返します。

charAtの説明図
var str = "あいうえお";

// charAtに関して
console.log('charAt(1):' + str.charAt(1));
console.log('charAt(aaa):' + str.charAt('aaa'));
console.log('charAt():' + str.charAt());
console.log('charAt(20):' + str.charAt(20));
出力結果

charAt(1) : い
charAt(aaa) : あ
charAt() : あ
charAt(20) :