How to perform string interpolation in TypeScript?
In JavaScript you can use template literals:
Template literals are literals delimited with backticks (`)
let value = 100;
console.log(`The size is ${ value }`);
Just use special `
var lyrics = 'Never gonna give you up';
var html = `<div>${lyrics}</div>`;
You can see more examples here.