Exercise:
Use the document.write() method to output "Hello World!".
Hint
Hint: document.write("
text
")
Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <script> // Add code here </script> </body> </html>
Result:
Show Answer
Correct Code:
<!DOCTYPE html> <html> <body> <script> document.write("Hello World!"); </script> </body> </html>
Correct Result:
Hide Answer
Privacy Policy