breaking single line into multiple lines in vs code code example
Example 1: vscode multiple line string
You can break lines using + concatening operator:
template: "<h1>" +
"</h1>"
Or ` backtick
template: `<h1>
</h1>`
Or \ backslash
template: "<h1>\
</h1>"
Example 2: how to comment multiple lines in vscode
********** For Windows **********
-> How to comment a block?
CTRL + K + CTRL + C
-> How to uncomment a block?
CTRL + K + CTRL + U