JavaScript String toUpperCase() Method
You are Here:
JavaScript String toUpperCase() Method
The toUpperCase()
method returns the calling string value converted to upper case.
Note: This method does not alter the original string.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<script>
var str = "My Name is John MR";
var result = str.toUpperCase();
document.write(result);
</script>
</body>
</html>
Syntax
str.toUpperCase()
Return Value
Value | Explanation |
---|---|
String | Returns a new string representing the calling string converted to upper case. |
Reminder
Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in JavaScript.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.