javascript new line in string literal code example
Example 1: Multi-Line JavaScript
console.log(`i am a multiline
string
and it works
but not on all browsers
- yet
`);
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}`;
}
Example 3: javascript template literals
var rgb = "rgb(" + r + "," + g + "," + b + ")";
var rgb = `rgb(${r}, ${g}, ${b})`;
Example 4: new line with javascript write
res.write("\n");