samarthagarwal
8/24/2018 - 12:00 PM

IF_04_05_Input_Binding_TS

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

@Component({
  selector: 'app-home',
  templateUrl: 'home.page.html',
  styleUrls: ['home.page.scss'],
})
export class HomePage {

  // property definition
  name: String;

  sayHello(){

    // using interpolation to display name
    alert(`Hello ${this.name}!`);

  }

}