जावास्क्रिप्ट के साथ किसी भी टेक्स्ट केस को लोअर केस में बदलने का तरीका जानें।
किसी भी स्ट्रिंग को लोअरकेस में बदलने के लिए आप जावास्क्रिप्ट का उपयोग कर सकते हैं toLowerCase()
विधि:
let someText = "Here is some text. Let us convert it all to lowercase"
someText.toLowerCase()
console.log(someText.toLowerCase())
// here is some text. let us convert it all to lowercase
toLowerCase()
एक नया लौटाता है स्ट्रिंग, जिसका अर्थ है कि यह नहीं करता है मूल स्ट्रिंग को बदलें (बदलें)।