javaascript multiline string code example
Example 1: javascript multiline string
const multilineString = `This
is
a
multiline
string
in
javascript`;
Example 2: html how to type a long string in many lines
function getLongString() {
return `
Bacon ipsum dolor amet boudin pastrami shankle ham fatback
pork. Short ribs ham beef, filet mignon ball tip sirloin
shankle t-bone drumstick. Ground round drumstick pancetta
fatback alcatra.
`;
}
function getDynamicMessage() {
const personName = "Dave Dude";
const whatever = (((1 + 2) * 3) / 4);
return `
Hello, ${personName}! Here's a very long string with
some dynamic values in, such as: ${whatever}`;
}