Write a JavaScript program to display alert message.
<!doctype html> <html> <head> <title>window.alert()</title> </head> <body> <script> window.alert("Hello World!") </script> </body> </html>