/
How can I make a multiline string?
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.
, multiple selections available,
Related content
How do I join strings together?
How do I join strings together?
More like this
How can do some funky thing with strings that I don't know?
How can do some funky thing with strings that I don't know?
More like this
How can we make a string with embedded " or ' characters?
How can we make a string with embedded " or ' characters?
More like this
Javascript Strings
Javascript Strings
More like this
Simple banner code
Simple banner code
More like this
Iterating through an array
Iterating through an array
More like this