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 valueof</title> </head> <body> <h2>valueOf method returns the primitive value of string object.</h2> <script> const str = new String("hello world"); document.write(str.valueOf(str)); </script> </body> </html>
RunĀ