.toUpperCase(), .toLowerCase()
안녕하세요? QRD입니다. 오늘은 자바스크립트에서 toUpperCase(), toLowerCase()를 알려드리겠습니다. toUpperCase() : 영어를 모두 대문자로 바꿔 버리는 함수. toLowerCase() : 영어를 모두 소문자로 바꿔 버리는 함수. 아래에서 구문을 확인해 보세요. .toUpperCase(); 구문 var input = 'I am a student'; var output = input.toUpperCase(); alert(output); // 결과 : I AM A STUDENT .toLowerCase(); 구문 var input = 'I am a student'; var output = input.toLowerCase(); alert(output); // 결과 : i am a ..