728x90
charAt() / charCodeAt()
charAt() 메서드는 지정한 인덱스의 문자를 추출하여 문자열을 반환합니다. charCodeAt() 메서드는 지정한 숫자의 유니코드 값을 반환합니다.
"문자열".charAt(숫자);
"문자열".charCodeAt(숫자);
"문자열".charCodeAt(숫자);
const str1 = "javascript reference";
const currentStr1 = str1.charAt();
const currentStr2 = str1.charAt("0");
const currentStr3 = str1.charAt("1");
const currentStr4 = str1.charAt("2");
const currentStr5 = str1.charCodeAt();
const currentStr6 = str1.charCodeAt("0");
const currentStr7 = str1.charCodeAt("1");
const currentStr8 = str1.charCodeAt("2");
결과보기
728x90
반응형
'Javascript' 카테고리의 다른 글
[javascript]요소 : 크기 및 위치 (4) | 2022.09.01 |
---|---|
[javascript]GSAP (4) | 2022.08.29 |
[javascript]match() (3) | 2022.08.22 |
[javascript]search() (3) | 2022.08.22 |
[javascript]함수 유형 (3) | 2022.08.22 |
댓글