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.
toUpperCase() method String को uppercase letters में convert करता है। हालाँकि यह original String में कोई changes नहीं करता है।
❕ Important
String को lowercase में convert करने के लिए toLowerCase() method use करते हैं।
string.toUpperCase()
string | required : यह String variable है जिसे आप uppercase letters में convert करना चाहते हैं।
Return Value : String को uppercase letters में convert करके return करता है।
File : js_toUpperCase.html
<!DOCTYPE html>
<html>
<body>
<script>
let str = "Hello world!.";
document.write(str.toUpperCase());
document.write("<br> Original String: " + str);
</script>
</body>
</html>
HELLO WORLD!. Original String: Hello world!.