Skip to main content

angular - Interpolation JavaScript 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";
}
app.component.html

<h2>
    {{"Hello, I am " + name
     + "! And my name in upper case is "
     + name.toUpperCase()}}
</h2>
More Angular tutorials