How to write multi-line strings in template literals ?
Template literals are introduced in ES6 and by this, we use strings in a modern way. Normally for defining string, we use double/single quotes ( " " or ' ' ) in JavaScript. But in template literals, we use backtick ( ` ` ). Let us see how to write multiline strings in template literals. Example 1: W