728x90
반응형
1. toLowerCase
문자열을 모두 소문자로 변환합니다
const text = 'HELLO';
console.log(text.toLowerCase());
// 결과: hello
2. toUpperCase
문자열을 모두 대문자로 변환합니다
const text = 'hello';
console.log(text.toUpperCase());
// 결과: HELLO
728x90
반응형