728x90
charAt() 란?
search()나 indexOf()와 비슷하나, 숫자로 검색 할 시 검색값이 문자열로 나옵니다.
const str1 = "cat do funch"
const currentStr1 = str1.charAt(); //c
const currentStr2 = str1.charAt('0'); //c
const currentStr3 = str1.charAt("5"); //f
"문자열".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
728x90
'Javascript' 카테고리의 다른 글
search() (8) | 2022.08.22 |
---|---|
match() (6) | 2022.08.22 |
함수 02 (4) | 2022.08.22 |
includes() (4) | 2022.08.17 |
padStart() / padEnd() (4) | 2022.08.17 |
댓글