which kind of strings support having multiple lines in javascript code example
Example: javascript string in multiple lines
var html = `
<div>
<span>Some HTML here</span>
</div>
`;
var html = `
<div>
<span>Some HTML here</span>
</div>
`;