format string typescript code example
Example 1: typescript format string
var yourMessage = `Your text ${yourVariable} your text continued ${yourExpression} and so on.`
Example 2: template string in typescript
let lyrics = 'Never gonna give you up';
let html = `<div>${lyrics}</div>`;