728x90
📎 charAt() 이란?
: 문자열에서 특정 위치의 문자가 무엇인지 확인할 수 있는 메서드입니다.
: 문자열의 개별 문자에 대해 특정 효과 줄 때 사용
string.charAt(index)
: "문자열".charAt(숫자);
: "문자열".charAt(숫자);
🔍 charAt() 메서드 사용예제 (★주석이 리턴값입니다!★)
const str1 = "javascript reference";
const currentStr1 = str1.charAt(); //j
const currentStr2 = str1.charAt("0"); //j
const currentStr3 = str1.charAt("1"); //a
const currentStr4 = str1.charAt("2"); //v
댓글