{{ title }} : {{ about }}

This example illustrates {{ data }} in Angular.

//app.component.ts import { Component } from "@angular/core"; @Component({ selector: "my-app", templateUrl: "./app.component.html", styleUrls: ["./app.component.css"], }) export class AppComponent { title = "GeeksforGeeks"; about = "Learning Portal for Geeks"; data = "String Interpolation"; }