Skip to main content

angular - Interpolation JavaScript property

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 = "Jenny";
}
app.component.html

<h2>
    {{"Hello, I am " + name
     + "! And my name length is "
     + name.length}}
</h2>
More Angular tutorials