How can I make a multiline string?
We can use literal notation with back slashes to make a multiline string:
var APPdescription = `
<h1>Multi Line Statement</h1>
<p
Notice the use of back slashes?
</p>`;
This is very convenient for chunks of HTML etc.
See HTML templates.