Prev Demo
JavaScript
>
Upper Case
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <h1>Changing Lowercase to UPPERCASE</h1> <script> var txt = "hello friends!"; document.write(txt.toUpperCase()); </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output