โ๏ธ toUpperCase(), toLowerCase() ์์ฝ
์์ด๋ก ์ด๋ฃจ์ด์ง ๋ฌธ์์ด์์ ๋๋ฌธ์๋ฅผ ์๋ฌธ์๋ก, ์๋ฌธ์๋ฅผ ๋๋ฌธ์๋ก ๋ฐ๊พธ๊ณ ์ถ์ ๋ ์ฌ์ฉํจ.
โ๏ธ toUpperCase(), toLowerCase() ์ฌ์ฉ๋ฒ
const str = "AbCdE";
// ์๋ฌธ์๋ฅผ ๋๋ฌธ์๋ก ๋ฐ๊ฟ ๋
const upperStr = str.toUpperCase(); // "ABCDE"
// ๋๋ฌธ์๋ฅผ ์๋ฌธ์๋ก ๋ฐ๊ฟ ๋
const lowerStr = str.toLowerCase(); // "abcde"