break line in string javascript code example
Example 1: new line with javascript write
res.write("\n");
Example 2: line break in js
<html>
<body>
<script>
<!--
document.write("Hello World!");
document.write("<br>");
document.write("Demo<br><br>Text!");
//-->
</script>
</body>
</html>