js line break in string code example
Example 1: javascript line break
//in JavaScript, you can declare a line break (or new line)
//with the \n character.
var linebreak = '\n';
Example 2: new line in js
document.write("\n");
//second method for html page
document.write("<br>");
Example 3: new line with javascript write
res.write("\n");
Example 4: line break in js
<html>
<body>
<script>
<!--
document.write("Hello World!");
document.write("<br>");
document.write("Demo<br><br>Text!");
//-->
</script>
</body>
</html>