代码示例:(标识:js_templates_multiline)
<!DOCTYPE html>
<html>
<body>

<h2>JavaScript 模板字面量</h2>

<p>模板字面量允许多行字符串:</p>

<p id="demo"></p>

<p>Internet Explorer 不支持模板字面量。</p>

<script>
let text =

`The quick
brown fox
jumps over
the lazy dog`;

document.getElementById("demo").innerHTML = text;
</script>

</body>
</html>
运行结果: