티스토리 뷰
charAt()
지정한 인덱스의 문자를 추출 : 반환(문자열)
{
const str = "자바스크립트(javascript) 공부";
const text1 = str.charAt(4);
//결과값 : 립
const text2 = str.charAt();
//결과값 : 자
}
'Javascript' 카테고리의 다른 글
Math.floor() (0) | 2022.05.01 |
---|---|
Math.round() (0) | 2022.05.01 |
startsWidth(), endWidth() (0) | 2022.04.17 |
toUpperCase(), toLowerCase() (0) | 2022.04.17 |
reduce(), reduceRight() (0) | 2022.04.17 |
댓글
© 2018 webstoryboy