Editor Arrow Download Open
<!DOCTYPE html> <html lang="en"> <head> <title>JavaScript String toLowerCase() and toUpperCase() function</title> </head> <body> <script type="text/javascript"> var str = "Hello String"; document.write(str.toUpperCase() + "<br />"); document.write(str.toLowerCase()); </script> </body> </html>
  Preview Arrow