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";
  age: Number = 27;
}
app.component.html
<h2>
    {{"Hello, I am " + name
     + "! And i am " + age 
     + " years old."}}
</h2>
- angular - How to create function
 - angular - Display value using interpolation
 - angular - Interpolation expression
 - angular - Interpolation JavaScript property
 - angular bootstrap - How to use Popover
 - angular bootstrap - Open Popover on mouse hover
 - angular bootstrap - Open close Popover on button click
 - angular bootstrap - Popover manual triggers
 - angular bootstrap - Popover custom CSS class
 - angular bootstrap - Popover shown & hidden event
 - angular bootstrap - Timepicker with meridian
 - angular bootstrap - Timepicker without spinner
 - angular bootstrap - Timepicker custom steps
 - angular bootstrap - Datepicker navigate to specific year month
 - angular bootstrap - Datepicker navigate select specific date