728x90
charAt() / charCodeAt()
charAt() 메서드는 문자열에서 인덱스의 위치를 찾아 첫 문자만 반환합니다.
charCodeAt() 메서드는 지정한 숫자의 유니코드 값을 반환 합니다.
사용법
"문자열".charAt(숫자);
"문자열".charCodeAt(숫자);
예제
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
const currentStr5 = str1.charCodeAt(); //106
const currentStr6 = str1.charAt("0"); //106
const currentStr7 = str1.charAt("1"); //97
const currentStr8 = str1.charAt("2"); //118
728x90
반응형
'JavaScript' 카테고리의 다른 글
search ( ) (1) | 2022.08.22 |
---|---|
match ( ) (1) | 2022.08.22 |
함수유형 (1) | 2022.08.22 |
concat() (5) | 2022.08.17 |
includes( ) (3) | 2022.08.17 |
댓글