javascript variable with multiline text code example
Example 1: javascript multiline string
// OPTION 1
var MultilineString = `This
is
a multiline
string`; // Note: use the template quotation marks above the tab key
// OPTION 2
var MultilineString = 'This \n\
is \n\
a multiline \n\
string'; // Note: use the "\n\" as a newline character
Example 2: javascript variable with multiline text
let multilineText = `This
is
a
multiline
text`;
console.log(multilineText);