charAt() 함수는 문자열에서 특정 인덱스에 위치하는 (유니코드 단일)문자를 찾아서 반환합니다.
let str_k = "안녕하세요"
let str_e = "hello, world"
console.log(str_k.charAt(4)) //결과값: 요
console.log(str_e.charAt(4)) //결과값: o
console.log(str_e.charAt(str_e.length - 1)); //결과값: d
console.log(str_e.charAt(1000) === ""); //결과값: true