JS : 대소문자 변환

daymoon_·2022년 2월 24일
0

JAVASCRIPT

목록 보기
13/23
post-thumbnail

대소문자 변환

자바스크립트에서 대문자를 소문자로 또는 소문자를 대문자로 변환하기 위해 사용하는 함수를 알아보자! 👻


대문자 변환 : toUpperCase() 함수

🔗 참고자료
MDN String.prototype.toUpperCase()
W3BIG 자바 스크립트 toUpperCase () 메서드
W3SCHOOL JavaScript String toUpperCase()

소문자를 대문자로 변환하는 방법은 toUpperCase()를 이용하며 원본 문자열(String)을 손상시키지 않는다.

즉, 원본 문자열은 변화가 없다.

📌 예시

const text1 = "abcdefg";
const text2 = "abCDefGhi";
const text3 = "Hello, My name is orange!";

// ABCDEFG
console.log(text1.toUpperCase());
// ABCDEFGHI
console.log(text2.toUpperCase());
// HELLO, MY NAME IS ORANGE!
console.log(text3.toUpperCase());

소문자 변환 : toLowerCase() 함수

🔗 참고자료
MDN String.prototype.toLowerCase()
W3BIG 자바 스크립트와 toLowerCase () 메소드
W3SCHOOL JavaScript String toLowerCase()

대문자를 소문자로 변환하는 방법은 toLowerCase()를 이용하며 원본 문자열(String)을 손상시키지 않는다.

즉, 원본 문자열은 변화가 없다.

📌 예시

const text1 = "ABCDEFG";
const text2 = "ABDKdfsdEWdfs";
const text3 = "Hello, My name is orange!";

// abcdefg
console.log(text1.toLowerCase());
// abdkdfsdewdfs
console.log(text2.toLowerCase());
// hello, my name is orange!
console.log(text3.toLowerCase());
profile
미지의 공간🌙

0개의 댓글