const multilineString = `This
is
a
multiline
string
in
javascript`;
//Multiple Line String
const multiline = `I am Shahnewaz
I am Web Developer
I am a Programmer
I am a Engineer
`;
console.log(multiline); //I am Shahnewaz I am Web Developer I am a Programmer I am a Engineer
// OPTION 1
var MultilineString = `This
is
a multiline
string`; // Note: use the template quotation marks above the tab key
// OPTION 2
var MultilineString = 'This
is
a multiline
string'; // Note: use the "
" as a newline character
const text = `Using the backtick character
you can define a string that
spans multiple lines.`;
// Creating multi-line string
var str = `<div class="content">
<h1>This is a heading</h1>
<p>This is a paragraph of text.</p>
</div>`;
// Printing the string
document.write(str);
const htmlString = `${user.name} liked your post about strings`;