String.prototype.toLowerCase()

- toLowerCase() 메서드는 문자열을 소문자로 변환해 반환합니다.
 

구문

str.toLowerCase()

반환값

호출 문자열을 소문자로 변환한 새로운 문자열

 

예제

toLowerCase()

console.log('ALPHABET'.toLowerCase()); // 'alphabet'

 

+ Recent posts