Updated on Kisan Patel
In Angular, you can use interpolation syntax for data binding. You can configure such setting per Component by specifying interpolation property of @Component decorator.
app.component.ts
import { Component, VERSION } from "@angular/core"; @Component({ selector: "my-app", interpolation: ["🐶","🐈"], template: `Magic interpolation: 🐶name🐈`, }) export class AppComponent { name = "Angular " + VERSION.major; }