Everybody knows that the
alert() function in JavaScript is used to display messages in a dialog box. For example, the following code:
alert('Hello Prakash');
will pop up with this message:
'Hello Prakash'.
But suppose you want the
Hello on one line and
Prakash in another? You can do this by using
'\n' in between the words, like this:
(eg) alert('Hello \n Prakash');