If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
toLowerCase() method String को lowercase letters में convert करता है। हालाँकि यह original String में कोई changes नहीं करता है।
❕ Important
String को uppercase में convert करने के लिए toUpperCase() method use करते हैं।
string.toLowerCase()
string | required : यह String variable है जिसे आप lowercase letters में convert करना चाहते हैं।
Return Value : String को lowercase letters में convert करके return करता है।
File : js_toLowerCase.html
<!DOCTYPE html>
<html>
<body>
<script>
let str = "Hello world!.";
document.write(str.toLowerCase());
document.write("<br> Original String: " + str);
</script>
</body>
</html>
hello world!. Original String: Hello world!.