Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Strings</h1> <h2>The toString() Method</h2> <p>toString() returns the content of a string object:</p> <p id="demo"></p> <script> let text = new String("Hello World!"); let result = text.toString(); document.getElementById("demo").innerHTML = result; </script> </body> </html>