string interpolation typescript code example
Example 1: typescript string interpolation
//Works only with ES6/ES2015 and above
let playerName:string = "Sachin Tendulkar";
console.log(`${playerName} is the greatest cricketer of all time`)
//**** Output ****
//Sachin Tendulkar is the greates cricker of all time
Example 2: template string in typescript
let lyrics = 'Never gonna give you up';
let html = `<div>${lyrics}</div>`;