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
728x90
반응형
'javascript' 카테고리의 다른 글
JavaScript 함수 유형 (5) | 2022.08.22 |
---|---|
JavaScript search() (3) | 2022.08.22 |
JavaScript match() (3) | 2022.08.22 |
JavaScript toUpperCase() / toLowerCase() (2) | 2022.08.17 |
JavaScript trim() / trimStart() / trimEnd() (2) | 2022.08.17 |