Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Problem with JavaScript Document.write() Method</title> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph of text.</p> <button type="button" onclick="document.write('Hello World!')">Click Me</button> </body> </html>