JavaScript Program to Display Multiline Alert Message

Write a JavaScript program to display multiline alert message



Source Code
<html>
<head>
<title>Alert message w/ paragraph breaks</title>
</head>
<body>

<script>

window.alert("Hello World!\n\n\nThanks for visiting!\n\n\nGoodbye!")

</script>

</body>
</html>
Output