string in typescript code example
Example 1: template string in typescript
let lyrics = 'Never gonna give you up';
let html = `<div>${lyrics}</div>`;
Example 2: angular type of string
if(typeof myVariable === 'string'){
//do
}
let lyrics = 'Never gonna give you up';
let html = `<div>${lyrics}</div>`;
if(typeof myVariable === 'string'){
//do
}