문자열 객체
charAt()에 대해 알아보는 시간을 가지도록 하겠습니다.
charAt()
charAt() 함수는 문자열에서 특정 인덱스에 위치하는 유니코드 단일문자를 반환합니다.
"문자열".charAt(숫자);
{
//14. 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
}
}
'Javascript' 카테고리의 다른 글
GSAP (7) | 2022.08.29 |
---|---|
함수 유형 02 (5) | 2022.08.23 |
match() (4) | 2022.08.23 |
search() (4) | 2022.08.23 |
includes() (1) | 2022.08.18 |
댓글