toUpperCase() / toLowerCase()
toUpperCase() : 문자열을 대문자로 변경 하고 toLowerCase() : 문자열을 소문자로 변경 한다.
str.toUpperCase()
// 예시입니다.
const str1 = "javascript";
const currentStr1 = str1.toUpperCase(); //JAVASCRIPT
const str2 = "JAVASCRIPT";
const currentStr2 = str2.toLowerCase(); //javascript
'Javascript' 카테고리의 다른 글
문자열 관련 메서드 concat() (7) | 2022.08.17 |
---|---|
문자열 관련 메서드 (trim(), trimStart(), trimEnd()) (3) | 2022.08.17 |
문자열 관련 메서드 split() (3) | 2022.08.17 |
문자열 관련 메서드 (indexOf() / lastindexOf()) (10) | 2022.08.16 |
문자열 관련 메서드 (slice(), susbstring(), substr()) (10) | 2022.08.16 |
댓글