I sometimes see this kind of syntax inside backticks in TypeScript component files in Angular projects:
<div ${selector} [inDemo]="false" [config]="demoConfig">Demo Content</div>
Can somebody explain me this specific attribute ${}
?
How does it work and when should I use it?