DatePipe
~20 mins
Date Pipe
- Reference: https://angular.io/api/common/DatePipe
Task 1: Create createdDate
- app.component.ts
createdDate = new Date().toJSON();//
- app.component.html
{{createdDate}}
Task 2: Format the Date
{{ createdDate | date }} // output is 'Jun 15, 2015'
{{ createdDate | date:'medium' }} // output is 'Jun 15, 2015, 9:43:11 PM'
{{ createdDate | date:'shortTime' }} // output is '9:43 PM'
{{ createdDate | date:'mm:ss' }} // output is '43:11'
<p>The time is {{createdDate | date:'h:mm a z'}}</p>