개발자의 끄적끄적

[javascript/jquery] javascript toLowerCase example / 자바스크립트 대문자를 소문자로 변경하는 방법 본문

개발/javascript & jquery

[javascript/jquery] javascript toLowerCase example / 자바스크립트 대문자를 소문자로 변경하는 방법

효벨 2021. 8. 8. 02:00
728x90
반응형

[javascript/jquery] javascript toLowerCase example / 자바스크립트 대문자를 소문자로 변경하는 방법

 

 

javascript 에서

 

알파벳 대문자로 된 문자열

 

소문자로 변경하고 싶은 경우에는

 

toLowerCase 라는 함수를 이용하시면 됩니다.

 

 

아래와 같이 ABC 라는 알파벳 대문자로된 문자열이 있다고 가정하고,

var text = "ABC";

 

이것을 소문자로 변경하고 싶으면

 

toLowerCase 를 이용하시면 됩니다.

var new_text = text.toLowerCase();

 

console.log 를 이용하여 출력하면

 

console.log(new_text);

 

결과는 아래와 같이

 

소문자로된 abc 가 출력되게 됩니다!

 

abc

참고들 하세요!

반응형
Comments