JavaScript에서 문자열을 소문자로 변환하려면 toLocaleLowerCase() 메서드를 사용하세요.
예시
다음 코드를 실행하여 JavaScript에서 toLocaleLowerCase() 메서드를 사용하는 방법을 배울 수 있습니다. −
<!DOCTYPE html> <html> <body> <script> var a = "WELCOME!"; document.write(a.toLocaleLowerCase()); </script> </body> </html>