Dragonball Online Goku Hand
본문 바로가기
Javascript

charAt()

by 별의 코비 2022. 8. 23.
728x90

📎 charAt() 이란?

: 문자열에서 특정 위치의 문자가 무엇인지 확인할 수 있는 메서드입니다.
: 문자열의 개별 문자에 대해 특정 효과 줄 때 사용

string.charAt(index)
: "문자열".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' 카테고리의 다른 글

요소 크기 메서드  (8) 2022.09.01
GSAP  (5) 2022.08.30
match()  (3) 2022.08.23
search()  (2) 2022.08.23
함수 유형  (2) 2022.08.23

댓글