728x90
charAt()
charAt은 첫 글자를 출력해주는 함수입니다.
::사용방법
"문자열".charAt(숫자);
const str1 = "javascript reference"
const currentStr1 = str1.charAt(); //j (4) ['e', 'e', 'e', 'e']
const currentStr2 = str1.charAt("0"); //j (4) ['e', 'e', 'e', 'e']
const currentStr3 = str1.charAt("1"); //a (4) ['e', 'e', 'e', 'e']
const currentStr4 = str1.charAt("2"); //v (4) ['e', 'e', 'e', 'e']
console.log(currentStr2);
결과 보기
j
j
a
v
j
a
v
728x90
반응형
'Javascript' 카테고리의 다른 글
함수 유형 : 객체 생성자 / 프로토 타입 / 객체 리터럴 (6) | 2022.08.23 |
---|---|
search() 함수에 대하여 (3) | 2022.08.23 |
match() 정보를 찾아주는 함수 (4) | 2022.08.23 |
toUpperCase() / toLowerCase () / trim() 에 대하여....!!! (6) | 2022.08.18 |
문자열을 포함 여부를 확인해주는 메서드 includes()는 뭘까?? (2) | 2022.08.18 |
댓글