typescript string template code example

Example 1: string literal javascript

`string text`

`string text line 1
 string text line 2`

`string text ${expression} string text`

tag`string text ${expression} string text`

Example 2: template string in typescript

let lyrics = 'Never gonna give you up';
let html = `<div>${lyrics}</div>`;

Example 3: ${ js

`string text`

`string text line 1
 string text line 2`

`string text ${expression} string text`

tag `string text ${expression} string text`

Tags:

Java Example