Prev Demo
JavaScript
>
Tolocaleupperrcase() Method
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <h1>Converting LowerCase to UpperCase.</h1> <p>Click the below button to Convert.</p> <input type="button" value="Convert" onclick="Function()" /> <p id="myId"></p> <script> function Function() { var A = "techfunda"; var r = A.toLocaleUpperCase(); document.getElementById("myId").innerHTML = r; } </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output