Skip to main content

angular - Interpolation call method

app.component.ts

import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})

export class AppComponent {
  name: String = "Innee";

  greeting(){
    return "Hello " + this.name + "!";
  }
}
app.component.html

<h2>
    {{greeting()}}
</h2>
More Angular tutorials