Giant Danio Fish
본문 바로가기
Javascript

문자열 관련 메서드 소문자 대문자(toUpperCase(), toLowerCase())

by 코딩왕자 2022. 8. 17.

toUpperCase() / toLowerCase()

toUpperCase() : 문자열을 대문자로 변경 하고 toLowerCase() : 문자열을 소문자로 변경 한다.

str.toUpperCase()

// 예시입니다.
const str1 = "javascript";
const currentStr1 = str1.toUpperCase();  //JAVASCRIPT

const str2 = "JAVASCRIPT";
const currentStr2 = str2.toLowerCase();  //javascript

댓글


광고 준비중입니다