<html>
<body>
<h2>Common JavaScript Mistakes</h2>
<p>You must use a "backslash" if you must break a statement in a string:</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = "Hello \
World!";
</script>
</body>
<!-- /js/tryit.asp?filename=tryjs_mistakes_string_3 Thu, 06 Feb 2025 19:15:30 GMT -->
</html>