1.  
  2. export class HeroBirthday2Component {
  3. birthday = new Date(1988, 3, 15); // April 15, 1988
  4. toggle = true; // start with true == shortDate
  5.  
  6. get format() { return this.toggle ? 'shortDate' : 'fullDate'; }
  7. toggleFormat() { this.toggle = !this.toggle; }
  8. }
  9.