new line in javascript alert code example
Example 1: javascript alert box new line
alert("Line 1\nLine 2");
Example 2: new line in javascript alert
//alert function is used to prompt alert box
//inside the quotes we write string to display
//use \n to enter new line
alert("John\nJames\nSteve");