Online HTML Editor
Javascript Online Compiler
index.html
Change Theme
Compress code
Uncompress code
Download Code
Clear Code
Copy Code!
RunĀ
Click to run or ctrl+s
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Javascript - String tolowercase</title> </head> <body> <h2>toLowercase method returns a new string by converting calling string to lowercase.</h2> <script> const sentence = "CARBON emission IS INCREASING DAY BY DAY"; document.write(sentence.toLowerCase()); </script> </body> </html>
RunĀ